gitlab-org--gitlab-foss/app/services/groups/create_service.rb

22 lines
506 B
Ruby
Raw Normal View History

module Groups
class CreateService < Groups::BaseService
2016-03-17 22:42:46 +00:00
def initialize(user, params = {})
@current_user, @params = user, params.dup
end
2016-03-17 22:42:46 +00:00
def execute
2016-03-18 12:28:16 +00:00
@group = Group.new(params)
2016-03-20 20:03:53 +00:00
unless Gitlab::VisibilityLevel.allowed_for?(current_user, params[:visibility_level])
deny_visibility_level(@group)
return @group
end
2016-03-18 12:28:16 +00:00
2016-03-17 22:42:46 +00:00
@group.name = @group.path.dup unless @group.name
@group.save
2016-03-18 12:28:16 +00:00
@group.add_owner(current_user)
2016-03-17 22:42:46 +00:00
@group
end
end
end