mastodon/app/models/admin/action_log.rb
2026-06-30 12:47:02 +00:00

53 lines
1.4 KiB
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: admin_action_logs
#
# id :bigint(8) not null, primary key
# action :string default(""), not null
# human_identifier :string
# permalink :string
# recorded_changes :jsonb
# recorded_changes_format :string
# route_param :string
# target_type :string
# created_at :datetime not null
# updated_at :datetime not null
# account_id :bigint(8) not null
# target_id :bigint(8)
#
class Admin::ActionLog < ApplicationRecord
LOG_ATTRIBUTES = %i(usable trendable listable).freeze
belongs_to :account
belongs_to :target, polymorphic: true, optional: true
before_validation :set_human_identifier
before_validation :set_route_param
before_validation :set_permalink
store_accessor :recorded_changes, *LOG_ATTRIBUTES
scope :latest, -> { order(id: :desc) }
def action
super.to_sym
end
private
def set_human_identifier
self.human_identifier = target.to_log_human_identifier if target.respond_to?(:to_log_human_identifier)
end
def set_route_param
self.route_param = target.to_log_route_param if target.respond_to?(:to_log_route_param)
end
def set_permalink
self.permalink = target.to_log_permalink if target.respond_to?(:to_log_permalink)
end
end