Created
April 21, 2013 22:30
-
-
Save nthj/5431332 to your computer and use it in GitHub Desktop.
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
rails_admin do | |
configure :expertise do | |
bootstrap_wysihtml5 true | |
end | |
edit do | |
group 'Login' do | |
field :email | |
field :password do | |
visible false | |
end | |
field :password_confirmation do | |
visible false | |
end | |
end | |
group 'Profile' do | |
field :team_member | |
field :name | |
field :title | |
field :expertise | |
field :image | |
end | |
end | |
list do | |
field :email | |
field :name | |
field :title | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment