summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/extended.rb
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