1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
module RailsAdmin
module Config
module Actions
class Show < RailsAdmin::Config::Actions::Base
RailsAdmin::Config::Actions.register(self)
register_instance_option :member do
true
end
register_instance_option :route_fragment do
''
end
register_instance_option :breadcrumb_parent do
[:index, bindings[:abstract_model]]
end
register_instance_option :controller do
proc do
respond_to do |format|
format.json { render json: @object }
format.html { render @action.template_name }
end
end
end
register_instance_option :link_icon do
'icon-info-sign'
end
end
end
end
end
|