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_metrics_setting.rb')
-rw-r--r--app/models/project_metrics_setting.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/models/project_metrics_setting.rb b/app/models/project_metrics_setting.rb
deleted file mode 100644
index c66d0f52f4c..00000000000
--- a/app/models/project_metrics_setting.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-class ProjectMetricsSetting < ApplicationRecord
- belongs_to :project
-
- validates :external_dashboard_url,
- allow_nil: true,
- length: { maximum: 255 },
- addressable_url: { enforce_sanitization: true, ascii_only: true }
-
- enum dashboard_timezone: { local: 0, utc: 1 }
-
- def dashboard_timezone=(val)
- super(val&.downcase)
- end
-end