docbrown/app/controllers/resource_admin/organizations_controller.rb
Josh Puetz cda18d0aa4
[deploy] Move Admin interface paths (#9576)
* Move administrate to /resource_admin

* Test fixes

* Update docs
2020-08-03 08:49:23 -04:00

24 lines
684 B
Ruby

module ResourceAdmin
class OrganizationsController < ResourceAdmin::ApplicationController
# To customize the behavior of this controller,
# simply overwrite any of the RESTful actions. For example:
#
# def index
# super
# @resources = Organization.all.paginate(10, params[:page])
# end
def update
super
@requested_resource.touch(:profile_updated_at)
end
# Define a custom finder by overriding the `find_resource` method:
# def find_resource(param)
# Organization.find_by!(slug: param)
# end
# See https://administrate-docs.herokuapp.com/customizing_controller_actions
# for more information
end
end