summaryrefslogtreecommitdiff
path: root/app/services/boards/visits/create_service.rb
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