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

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

module Boards
  module Visits
    class CreateService < Boards::BaseService
      def execute(board)
        return unless current_user && Gitlab::Database.read_write?

        if parent.is_a?(Group)
          BoardGroupRecentVisit.visited!(current_user, board)
        else
          BoardProjectRecentVisit.visited!(current_user, board)
        end
      end
    end
  end
end