Class: Projects::MoveUsersStarProjectsService

Inherits:
BaseMoveRelationsService show all
Defined in:
app/services/projects/move_users_star_projects_service.rb

Instance Attribute Summary

Attributes inherited from BaseMoveRelationsService

#source_project

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Methods included from BaseServiceUtility

#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level

Methods included from Gitlab::Allowable

#can?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#execute(source_project, remove_remaining_elements: true) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/services/projects/move_users_star_projects_service.rb', line 5

def execute(source_project, remove_remaining_elements: true)
  return unless super

  user_stars = source_project.users_star_projects

  return unless user_stars.any?

  Project.transaction do
    user_stars.update_all(project_id: @project.id)

    @project.update(star_count: @project.starrers.with_state(:active).size)
    source_project.update(star_count: source_project.starrers.with_state(:active).size)

    success
  end
end