I have in my model:
attr_accessible :name, as: :admin
And in my active admin initializer:
module ActiveAdmin
class BaseController
with_role :admin
end
end
Is it possible to get the role that is editing the record in the model, to do something like this:
validate :thing, if: ->{ modifier == :admin }
?
I used an
attr_accessor
for now:And I send it from the form:
Then I could use it like this: