summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/extended.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/status/extended.rb')
-rw-r--r--lib/gitlab/ci/status/extended.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/gitlab/ci/status/extended.rb b/lib/gitlab/ci/status/extended.rb
index 6bfb5d38c1f..d367c9bda69 100644
--- a/lib/gitlab/ci/status/extended.rb
+++ b/lib/gitlab/ci/status/extended.rb
@@ -2,8 +2,12 @@ module Gitlab
module Ci
module Status
module Extended
- def matches?(_subject)
- raise NotImplementedError
+ extend ActiveSupport::Concern
+
+ class_methods do
+ def matches?(_subject, _user)
+ raise NotImplementedError
+ end
end
end
end