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

users_starred_dashboard.rb « metrics « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07748eb14316e70e18d103897dda8815b3535b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Metrics
  class UsersStarredDashboard < ApplicationRecord
    self.table_name = 'metrics_users_starred_dashboards'

    belongs_to :user, inverse_of: :metrics_users_starred_dashboards
    belongs_to :project, inverse_of: :metrics_users_starred_dashboards

    validates :user_id, presence: true
    validates :project_id, presence: true
    validates :dashboard_path, presence: true, length: { maximum: 255 }
    validates :dashboard_path, uniqueness: { scope: %i[user_id project_id] }

    scope :for_project, ->(project) { where(project: project) }
    scope :for_project_dashboard, ->(project, path) { for_project(project).where(dashboard_path: path) }
  end
end