21 lines
470 B
Ruby
21 lines
470 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Audit
|
|
class UnauthenticatedAuthor < Gitlab::Audit::NullAuthor
|
|
def initialize(name: nil)
|
|
super(id: -1, name: name)
|
|
end
|
|
|
|
# Events that are authored by unauthenticated users, should be
|
|
# shown as authored by `An unauthenticated user` in the UI.
|
|
def name
|
|
@name || _('An unauthenticated user')
|
|
end
|
|
|
|
def impersonated?
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|