-
-
Save kivanio/07df8d9da48a107e8287 to your computer and use it in GitHub Desktop.
This file contains 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
ActiveAdmin.register Article do | |
index do | |
selectable_column | |
id_column | |
column :name, :sortable => :name do |resource| | |
editable_text_column resource, :name | |
end | |
column 'Type', :sortable => :article_type do |resource| | |
column_select(resource, :article_type, ["News", "Story", "Case Study", "Business"]) | |
end | |
column :created_at | |
column :updated_at | |
default_actions | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment