Skip to content

Instantly share code, notes, and snippets.

@Syntaf
Last active August 8, 2020 18:22
Show Gist options
  • Save Syntaf/893eb5de46c95a249f4401e9a9f6e1cb to your computer and use it in GitHub Desktop.
Save Syntaf/893eb5de46c95a249f4401e9a9f6e1cb to your computer and use it in GitHub Desktop.
# app/models/group.rb
class Group < ApplicationRecord
include Moderate::GroupConfig
include Sluggable
# ...
end
# app/models/concerns/moderate/group_config.rb
module Moderate
module GroupConfig
extend ActiveSupport::Concern
included do
rails_admin do
edit do
# ...
end
list do
# ...
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment