This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-11-24 02:05:53 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AccountableConcern
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2021-12-05 21:48:39 +01:00
|
|
|
def log_action(action, target, options = {})
|
|
|
|
Admin::ActionLog.create(account: current_account, action: action, target: target, recorded_changes: options.stringify_keys)
|
2017-11-24 02:05:53 +01:00
|
|
|
end
|
|
|
|
end
|