gitlab-org--gitlab-foss/app/models/audit_event.rb

24 lines
506 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AuditEvent < ApplicationRecord
serialize :details, Hash # rubocop:disable Cop/ActiveRecordSerialize
2015-07-03 11:54:50 +00:00
belongs_to :user, foreign_key: :author_id
validates :author_id, presence: true
validates :entity_id, presence: true
validates :entity_type, presence: true
after_initialize :initialize_details
def initialize_details
self.details = {} if details.nil?
end
def author_name
self.user.name
end
end
AuditEvent.prepend_if_ee('EE::AuditEvent')