gitlab-org--gitlab-foss/lib/gitlab/audit/null_target.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
213 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module Gitlab
module Audit
class NullTarget
def id
nil
end
def type
nil
end
def details
nil
end
end
end
end