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
Léo-Paul Géneau
gitlab-ce
Commits
93f4234d
Commit
93f4234d
authored
Nov 07, 2016
by
Sean McGivern
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-api-label-id' into 'master'
Expose Label id to API Closes #23448 See merge request !7275
parents
6f307295
63f0b099
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
111 additions
and
90 deletions
+111
-90
changelogs/unreleased/add-api-label-id.yml
changelogs/unreleased/add-api-label-id.yml
+4
-0
doc/api/labels.md
doc/api/labels.md
+100
-89
lib/api/entities.rb
lib/api/entities.rb
+1
-1
spec/requests/api/labels_spec.rb
spec/requests/api/labels_spec.rb
+6
-0
No files found.
changelogs/unreleased/add-api-label-id.yml
0 → 100644
View file @
93f4234d
---
title
:
Expose label IDs in API
merge_request
:
7275
author
:
Rares Sfirlogea
doc/api/labels.md
View file @
93f4234d
...
...
@@ -21,6 +21,7 @@ Example response:
```
json
[
{
"id"
:
1
,
"name"
:
"bug"
,
"color"
:
"#d9534f"
,
"description"
:
"Bug reported by user"
,
...
...
@@ -31,6 +32,7 @@ Example response:
"priority"
:
10
},
{
"id"
:
4
,
"color"
:
"#d9534f"
,
"name"
:
"confirmed"
,
"description"
:
"Confirmed issue"
,
...
...
@@ -41,6 +43,7 @@ Example response:
"priority"
:
null
},
{
"id"
:
7
,
"name"
:
"critical"
,
"color"
:
"#d9534f"
,
"description"
:
"Critical issue. Need fix ASAP"
,
...
...
@@ -51,6 +54,7 @@ Example response:
"priority"
:
null
},
{
"id"
:
8
,
"name"
:
"documentation"
,
"color"
:
"#f0ad4e"
,
"description"
:
"Issue about documentation"
,
...
...
@@ -61,13 +65,14 @@ Example response:
"priority"
:
null
},
{
"id"
:
9
,
"color"
:
"#5cb85c"
,
"name"
:
"enhancement"
,
"description"
:
"Enhancement proposal"
,
"open_issues_count"
:
1
,
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
fals
e
,
"subscribed"
:
tru
e
,
"priority"
:
null
}
]
...
...
@@ -100,12 +105,14 @@ Example response:
```
json
{
"id"
:
10
,
"name"
:
"feature"
,
"color"
:
"#5843AD"
,
"open_issues_count"
:
1
,
"description"
:
null
,
"open_issues_count"
:
0
,
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
1
,
"description"
:
null
,
"open_merge_requests_count"
:
0
,
"subscribed"
:
false
,
"priority"
:
null
}
```
...
...
@@ -135,14 +142,14 @@ Example response:
```
json
{
"title"
:
"feature"
,
"color"
:
"#5843AD
"
,
"description"
:
"New feature proposal
"
,
"updated_at"
:
"2015-11-03T21:22:30.737Z
"
,
"template"
:
false
,
"project_id"
:
1
,
"created_at"
:
"2015-11-03T21:22:30.737Z"
,
"id"
:
9
,
"id"
:
1
,
"name"
:
"bug
"
,
"color"
:
"#d9534f
"
,
"description"
:
"Bug reported by user
"
,
"open_issues_count"
:
1
,
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
false
,
"priority"
:
null
}
```
...
...
@@ -178,12 +185,14 @@ Example response:
```
json
{
"color"
:
"#8E44AD"
,
"id"
:
8
,
"name"
:
"docs"
,
"color"
:
"#8E44AD"
,
"description"
:
"Documentation"
,
"open_issues_count"
:
1
,
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
1
,
"open_merge_requests_count"
:
2
,
"subscribed"
:
false
,
"priority"
:
null
}
```
...
...
@@ -213,12 +222,13 @@ Example response:
```
json
{
"name"
:
"Docs"
,
"color"
:
"#cc0033"
,
"description"
:
""
,
"open_issues_count"
:
0
,
"id"
:
1
,
"name"
:
"bug"
,
"color"
:
"#d9534f"
,
"description"
:
"Bug reported by user"
,
"open_issues_count"
:
1
,
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
0
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
true
,
"priority"
:
null
}
...
...
@@ -249,12 +259,13 @@ Example response:
```
json
{
"name"
:
"Docs"
,
"color"
:
"#cc0033"
,
"description"
:
""
,
"open_issues_count"
:
0
,
"id"
:
1
,
"name"
:
"bug"
,
"color"
:
"#d9534f"
,
"description"
:
"Bug reported by user"
,
"open_issues_count"
:
1
,
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
0
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
false
,
"priority"
:
null
}
...
...
lib/api/entities.rb
View file @
93f4234d
...
...
@@ -433,7 +433,7 @@ module API
end
class
LabelBasic
<
Grape
::
Entity
expose
:name
,
:color
,
:description
expose
:
id
,
:
name
,
:color
,
:description
end
class
Label
<
LabelBasic
...
...
spec/requests/api/labels_spec.rb
View file @
93f4234d
...
...
@@ -17,12 +17,18 @@ describe API::API, api: true do
group
=
create
(
:group
)
group_label
=
create
(
:group_label
,
group:
group
)
project
.
update
(
group:
group
)
expected_keys
=
[
'id'
,
'name'
,
'color'
,
'description'
,
'open_issues_count'
,
'closed_issues_count'
,
'open_merge_requests_count'
,
'subscribed'
,
'priority'
]
get
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
)
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
size
).
to
eq
(
3
)
expect
(
json_response
.
first
.
keys
).
to
match_array
expected_keys
expect
(
json_response
.
map
{
|
l
|
l
[
'name'
]
}).
to
match_array
([
group_label
.
name
,
priority_label
.
name
,
label1
.
name
])
expect
(
json_response
.
last
[
'name'
]).
to
eq
(
label1
.
name
)
expect
(
json_response
.
last
[
'color'
]).
to
be_present
...
...
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