Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • G gitlabhq1
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 21
    • Issues 21
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 12
    • Merge requests 12
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • gpt
  • large_projects
  • gitlabhq1
  • Issues
  • #6417

Closed
Open
Created Feb 26, 2014 by Administrator@rootOwner

Unable to create groups by non-admin thru API

Created by: petrpulc

Even though I can create groups in GitLab itself (as I am granted with privilege to create groups) I cannot find a way how to force API to create group with current user as owner of the group and thus chance to add projects and members through API.

In other words: POST /groups should not be admin only, as not only admin has right to create group.

But following change (mad with respect to group_controller) doesn't cut it:

lib/api/groups.rb - line 43

post do
  required_attributes! [:name, :path]

  attrs = attributes_for_keys [:name, :path]
  @group = Group.new(attrs)

  if @group.save
    @group.add_owner(current_user)
    present @group, with: Entities::Group
  else
    not_found!
  end
end

This creates group with name and path as intended, but current_user in not added to this group and whole presented result is a nil.

Assignee
Assign to
Time tracking