summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/extended.rb
blob: 1e8101f894950f4327dc473cc05b262a95e7ed80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab
  module Ci
    module Status
      class Extended < SimpleDelegator
        def initialize(status)
          super(@status = status)
        end

        def self.matches?(_subject, _user)
          raise NotImplementedError
        end
      end
    end
  end
end