summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/extended.rb
blob: b72a28ed0b62760a2f0986063ee1b2785d764064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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