debian-mirror-gitlab/app/services/destroy_group_service.rb
2016-06-02 11:05:42 +05:30

18 lines
441 B
Ruby

class DestroyGroupService
attr_accessor :group, :current_user
def initialize(group, user)
@group, @current_user = group, user
end
def execute
group.projects.each do |project|
# Skip repository removal because we remove directory with namespace
# that contain all this repositories
::Projects::DestroyService.new(project, current_user, skip_repo: true).pending_delete!
end
group.destroy
end
end