18 lines
410 B
Ruby
18 lines
410 B
Ruby
|
# 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
|