internetee-registry/app/controllers/admin/tools_controller.rb
2025-05-14 10:56:58 +03:00

14 lines
221 B
Ruby

module Admin
class ToolsController < BaseController
before_action :authorize_admin
# GET /admin/tools
def index; end
private
def authorize_admin
authorize! :access, :tools
end
end
end