Skip to content

Instantly share code, notes, and snippets.

@pgeraghty
Last active December 7, 2023 15:22
Show Gist options
  • Save pgeraghty/5822760 to your computer and use it in GitHub Desktop.
Save pgeraghty/5822760 to your computer and use it in GitHub Desktop.
Add Delayed Job to Rails Admin (make it visible as a model)
RailsAdmin.config do |config|
config.included_models = RailsAdmin::Config.models_pool << 'Delayed::Job'
config.model Delayed::Job do
label 'Task'
navigation_label 'Background Processing'
end
end
@palladius
Copy link

You are THE BEST! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment