1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-22 18:43:49 -05:00

14 lines
243 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module AccountableConcern
extend ActiveSupport::Concern
def log_action(action, target)
Admin::ActionLog.create(
account: current_account,
action: action,
target: target
)
end
end