debian-mirror-gitlab/lib/bulk_imports/groups/loaders/group_loader.rb
2021-04-17 20:07:23 +05:30

32 lines
738 B
Ruby

# frozen_string_literal: true
module BulkImports
module Groups
module Loaders
class GroupLoader
def load(context, data)
return unless user_can_create_group?(context.current_user, data)
group = ::Groups::CreateService.new(context.current_user, data).execute
context.entity.update!(group: group)
group
end
private
def user_can_create_group?(current_user, data)
if data['parent_id']
parent = Namespace.find_by_id(data['parent_id'])
Ability.allowed?(current_user, :create_subgroup, parent)
else
Ability.allowed?(current_user, :create_group)
end
end
end
end
end
end