2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
module Projects
|
|
|
|
class MoveUsersStarProjectsService < BaseMoveRelationsService
|
|
|
|
def execute(source_project, remove_remaining_elements: true)
|
|
|
|
return unless super
|
|
|
|
|
|
|
|
user_stars = source_project.users_star_projects
|
|
|
|
|
|
|
|
return unless user_stars.any?
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
Project.transaction do
|
2018-05-09 12:01:36 +05:30
|
|
|
user_stars.update_all(project_id: @project.id)
|
|
|
|
|
|
|
|
Project.reset_counters @project.id, :users_star_projects
|
|
|
|
Project.reset_counters source_project.id, :users_star_projects
|
|
|
|
|
|
|
|
success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|