This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-23 17:05:53 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AccountableConcern
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2022-08-25 11:39:40 -07:00
|
|
|
def log_action(action, target)
|
|
|
|
Admin::ActionLog.create(
|
|
|
|
account: current_account,
|
|
|
|
action: action,
|
|
|
|
target: target
|
|
|
|
)
|
2017-11-23 17:05:53 -08:00
|
|
|
end
|
|
|
|
end
|