debian-mirror-gitlab/app/services/boards/visits/create_service.rb

19 lines
503 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
module Boards
module Visits
class CreateService < Boards::BaseService
def execute(board)
return unless current_user && Gitlab::Database.read_write?
2021-03-11 19:13:27 +05:30
return unless board.is_a?(Board) # other board types do not support board visits yet
2018-12-13 13:39:08 +05:30
if parent.is_a?(Group)
BoardGroupRecentVisit.visited!(current_user, board)
else
BoardProjectRecentVisit.visited!(current_user, board)
end
end
end
end
end