gitlab-org--gitlab-foss/app/models/concerns/editable.rb

12 lines
188 B
Ruby
Raw Normal View History

module Editable
extend ActiveSupport::Concern
def is_edited?
last_edited_at.present? && last_edited_at != created_at
end
def last_edited_by
super || User.ghost
end
end