Last active
December 7, 2023 15:22
-
-
Save pgeraghty/5822760 to your computer and use it in GitHub Desktop.
Add Delayed Job to Rails Admin (make it visible as a model)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are THE BEST! Thanks!