summaryrefslogtreecommitdiff
path: root/app/models/integrations/builds_email.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/integrations/builds_email.rb')
-rw-r--r--app/models/integrations/builds_email.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/models/integrations/builds_email.rb b/app/models/integrations/builds_email.rb
deleted file mode 100644
index 2628848667e..00000000000
--- a/app/models/integrations/builds_email.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-# This class is to be removed with 9.1
-# We should also by then remove BuildsEmailService from database
-# https://gitlab.com/gitlab-org/gitlab/-/issues/331064
-module Integrations
- class BuildsEmail < Integration
- def self.to_param
- 'builds_email'
- end
-
- def self.supported_events
- %w[]
- end
- end
-end