Skip to content

Instantly share code, notes, and snippets.

@apolzon
Created October 1, 2014 19:22
Show Gist options
  • Save apolzon/becf650e8192b6b2b045 to your computer and use it in GitHub Desktop.
Save apolzon/becf650e8192b6b2b045 to your computer and use it in GitHub Desktop.
module RailsAdmin::Collaborator
extend ActiveSupport::Concern
def self.extended(base)
base.class_eval do
rails_admin do
field :full_name
field :email
field :company
end
end
end
end
class Collaborator
extend RailsAdmin::Collaborator
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment