You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
225 B
16 lines
225 B
3 years ago
|
module Admin
|
||
|
module PaperTrail
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
before_action :set_paper_trail_whodunnit
|
||
|
end
|
||
|
|
||
|
protected
|
||
|
|
||
|
def user_for_paper_trail
|
||
|
current_admin_user
|
||
|
end
|
||
|
end
|
||
|
end
|