Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/alert_management/http_integrations.rb')
-rw-r--r--spec/factories/alert_management/http_integrations.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/factories/alert_management/http_integrations.rb b/spec/factories/alert_management/http_integrations.rb
index 9311cb3e114..2b5864c8587 100644
--- a/spec/factories/alert_management/http_integrations.rb
+++ b/spec/factories/alert_management/http_integrations.rb
@@ -10,5 +10,11 @@ FactoryBot.define do
trait :inactive do
active { false }
end
+
+ trait :legacy do
+ endpoint_identifier { 'legacy' }
+ end
+
+ initialize_with { new(**attributes) }
end
end