4376167a04
This new table will be used to store the external_dashboard_url which allows users to add a link to their external dashboards (ex Grafana) to the Metrics dashboard.
8 lines
191 B
Ruby
8 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :project_metrics_setting, class: ProjectMetricsSetting do
|
|
project
|
|
external_dashboard_url 'https://grafana.com'
|
|
end
|
|
end
|