module ActiveScaffold::ActiveRecordPermissions::ModelUserAccess::Controller
Public Class Methods
included(base)
click to toggle source
# File lib/active_scaffold/active_record_permissions.rb, line 28 def self.included(base) base.prepend_before_filter :assign_current_user_to_models end
Public Instance Methods
assign_current_user_to_models()
click to toggle source
We need to give the ActiveRecord classes a handle to the current user. We don't want to just pass the object, because the object may change (someone may log in or out). So we give ActiveRecord a proc that ties to the current_user_method on this ApplicationController.
# File lib/active_scaffold/active_record_permissions.rb, line 35 def assign_current_user_to_models ActiveRecord::Base.current_user_proc = proc { send(ActiveRecordPermissions.current_user_method) } end