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

null_target.rb « audit « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed3a50e90671a29d09001c2bd5819be324620aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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