Sha256: 34040154c208c327b842399218227dd81bb5f0f3f112dce63e2c6083c5f95af7
Contents?: true
Size: 377 Bytes
Versions: 6
Compression:
Stored size: 377 Bytes
Contents
require_dependency "authz/application_controller" module Authz class Validations::ControllerNamesController < ApplicationController def new name = params[:controller_action][:controller] found = ControllerAction.reachable_controller_actions[name].present? respond_to do |format| format.json {render :json => found} end end end end
Version data entries
6 entries across 6 versions & 1 rubygems