I'd like to control the permit method with something like this
class SomethingController < ApplicationController permit :somerole end
where ':somerole' is a field in the database linked to a controller and an action. Something that an user with priviledge can administer and change.
Some Idea?