gitlab-org--gitlab-foss/app/models/board_group_recent_visit.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
466 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Tracks which boards in a specific group a user has visited
class BoardGroupRecentVisit < ApplicationRecord
include BoardRecentVisit
belongs_to :user
belongs_to :group
belongs_to :board
validates :user, presence: true
validates :group, presence: true
validates :board, presence: true
scope :by_user_parent, -> (user, group) { where(user: user, group: group) }
def self.board_parent_relation
:group
end
end