2014-12-10 08:01:59 -08:00
|
|
|
# workaround to get pagination right
|
|
|
|
if defined? WillPaginate
|
|
|
|
Kaminari.configure do |config|
|
|
|
|
config.page_method_name = :per_page_kaminari
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
RailsAdmin.config do |config|
|
|
|
|
|
|
|
|
config.main_app_name = ['justask', 'Kontrollzentrum']
|
|
|
|
|
|
|
|
## == Authentication ==
|
|
|
|
config.authenticate_with do
|
|
|
|
redirect_to main_app.root_path unless current_user.try :admin?
|
|
|
|
end
|
|
|
|
config.current_user_method(&:current_user)
|
|
|
|
|
|
|
|
config.actions do
|
|
|
|
dashboard # mandatory
|
|
|
|
index # mandatory
|
|
|
|
new
|
|
|
|
export
|
|
|
|
bulk_delete
|
|
|
|
show
|
|
|
|
edit
|
|
|
|
delete
|
|
|
|
show_in_app
|
|
|
|
|
|
|
|
## With an audit adapter, you can add:
|
|
|
|
# history_index
|
|
|
|
# history_show
|
|
|
|
end
|
|
|
|
|
|
|
|
config.included_models = %w[
|
|
|
|
Answer
|
|
|
|
Comment
|
2015-01-17 10:30:24 -08:00
|
|
|
Group
|
|
|
|
GroupMember
|
2014-12-10 08:01:59 -08:00
|
|
|
Inbox
|
2014-12-26 05:31:59 -08:00
|
|
|
Notification
|
2014-12-10 08:01:59 -08:00
|
|
|
Question
|
|
|
|
Relationship
|
2014-12-27 05:35:09 -08:00
|
|
|
Report
|
2014-12-26 05:31:59 -08:00
|
|
|
Service
|
|
|
|
Services::Twitter
|
2015-01-12 15:12:48 -08:00
|
|
|
Services::Tumblr
|
2014-12-10 08:01:59 -08:00
|
|
|
Smile
|
2015-08-25 12:10:08 -07:00
|
|
|
Theme
|
2014-12-10 08:01:59 -08:00
|
|
|
User
|
|
|
|
]
|
|
|
|
end
|