Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deleted_author.rb « audit « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3b8ad5ad21c97dde618948023a5a4f564897343 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Gitlab
  module Audit
    class DeletedAuthor < Gitlab::Audit::NullAuthor
    end
  end
end