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

extended.rb « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d367c9bda69ff2d71f6e6cef91c3ef66fbc7b2b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab
  module Ci
    module Status
      module Extended
        extend ActiveSupport::Concern

        class_methods do
          def matches?(_subject, _user)
            raise NotImplementedError
          end
        end
      end
    end
  end
end