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 'app/models/project_tracing_setting.rb')
-rw-r--r--app/models/project_tracing_setting.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/models/project_tracing_setting.rb b/app/models/project_tracing_setting.rb
deleted file mode 100644
index 93fa80aed67..00000000000
--- a/app/models/project_tracing_setting.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class ProjectTracingSetting < ApplicationRecord
- belongs_to :project
-
- validates :external_url, length: { maximum: 255 }, public_url: true
-
- before_validation :sanitize_external_url
-
- private
-
- def sanitize_external_url
- self.external_url = Rails::Html::FullSanitizer.new.sanitize(self.external_url)
- end
-end