title | category | layout |
---|---|---|
ActiveAdmin |
Ruby |
2017/sheet |
Allows you to filter listings by a certain scope. {: .-setup}
scope :draft
scope :for_approval
scope :public, if: ->{ current_admin_user.can?(...) }
scope "Unapproved", :pending
scope("Published") { |books| books.where(:published: true) }
filter :email
filter :username
You can define custom actions for models. {: .-setup}
before_filter only: [:show, :edit, :publish] do
@post = Post.find(params[:id])
end
member_action :publish, method: :put do
@post.publish!
redirect_to admin_posts_path, notice: "The post '#{@post}' has been published!"
end
index do
column do |post|
link_to 'Publish', publish_admin_post_path(post), method: :put
end
end
action_item only: [:edit, :show] do
@post = Post.find(params[:id])
link_to 'Publish', publish_admin_post_path(post), method: :put
end
column :foo
column :title, sortable: :name do |post|
strong post.title
end
status_tag "Done" # Gray
status_tag "Finished", :ok # Green
status_tag "You", :warn # Orange
status_tag "Failed", :error # Red
ActiveAdmin.register Post do
actions :index, :edit
# or: config.clear_action_items!
end