summaryrefslogtreecommitdiff
path: root/app/models/project_tracing_setting.rb
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, 15 insertions, 0 deletions
diff --git a/app/models/project_tracing_setting.rb b/app/models/project_tracing_setting.rb
new file mode 100644
index 00000000000..93fa80aed67
--- /dev/null
+++ b/app/models/project_tracing_setting.rb
@@ -0,0 +1,15 @@
+# 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