Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
4f2c4411
Commit
4f2c4411
authored
Oct 25, 2016
by
Borja Aparicio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added API endpoint groups/owned
parent
c2e2cde9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
0 deletions
+41
-0
changelogs/unreleased/feature-api_owned_resource.yml
changelogs/unreleased/feature-api_owned_resource.yml
+4
-0
doc/api/groups.md
doc/api/groups.md
+9
-0
lib/api/groups.rb
lib/api/groups.rb
+10
-0
spec/requests/api/groups_spec.rb
spec/requests/api/groups_spec.rb
+18
-0
No files found.
changelogs/unreleased/feature-api_owned_resource.yml
0 → 100644
View file @
4f2c4411
---
title
:
Add api endpoint `/groups/owned`
merge_request
:
7103
author
:
Borja Aparicio
doc/api/groups.md
View file @
4f2c4411
...
@@ -26,6 +26,15 @@ GET /groups
...
@@ -26,6 +26,15 @@ GET /groups
You can search for groups by name or path, see below.
You can search for groups by name or path, see below.
=======
## List owned groups
Get a list of groups which are owned by the authenticated user.
```
GET /groups/owned
```
## List a group's projects
## List a group's projects
Get a list of projects in this group.
Get a list of projects in this group.
...
...
lib/api/groups.rb
View file @
4f2c4411
...
@@ -26,6 +26,16 @@ module API
...
@@ -26,6 +26,16 @@ module API
present
@groups
,
with:
Entities
::
Group
present
@groups
,
with:
Entities
::
Group
end
end
# Get list of owned groups for authenticated user
#
# Example Request:
# GET /groups/owned
get
'/owned'
do
@groups
=
current_user
.
owned_groups
@groups
=
paginate
@groups
present
@groups
,
with:
Entities
::
Group
,
user:
current_user
end
# Create group. Available only for users who can create groups.
# Create group. Available only for users who can create groups.
#
#
# Parameters:
# Parameters:
...
...
spec/requests/api/groups_spec.rb
View file @
4f2c4411
...
@@ -68,6 +68,24 @@ describe API::API, api: true do
...
@@ -68,6 +68,24 @@ describe API::API, api: true do
end
end
end
end
describe
'GET /groups/owned'
do
context
'when unauthenticated'
do
it
'returns authentication error'
do
get
api
(
'/groups/owned'
)
expect
(
response
).
to
have_http_status
(
401
)
end
end
context
'when authenticated as group owner'
do
it
'returns an array of groups the user owns'
do
get
api
(
'/groups/owned'
,
user2
)
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
first
[
'name'
]).
to
eq
(
group2
.
name
)
end
end
end
describe
"GET /groups/:id"
do
describe
"GET /groups/:id"
do
context
"when authenticated as user"
do
context
"when authenticated as user"
do
it
"returns one of user1's groups"
do
it
"returns one of user1's groups"
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment