Newer
Older
dmpopidor / app / controllers / admin / identifier_schemes_controller.rb
@Jimmy Angelakos Jimmy Angelakos on 3 Mar 2017 591 bytes Installed Administrate as Super Admin backend
module Admin
  class IdentifierSchemesController < Admin::ApplicationController
    # To customize the behavior of this controller,
    # simply overwrite any of the RESTful actions. For example:
    #
    # def index
    #   super
    #   @resources = IdentifierScheme.all.paginate(10, params[:page])
    # end

    # Define a custom finder by overriding the `find_resource` method:
    # def find_resource(param)
    #   IdentifierScheme.find_by!(slug: param)
    # end

    # See https://administrate-docs.herokuapp.com/customizing_controller_actions
    # for more information
  end
end