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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
410789ad
Commit
410789ad
authored
Feb 14, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
476cad4d
ed7144ad
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
9 deletions
+28
-9
changelogs/unreleased/56694-mark-group-level-labels-in-label-api-as-such.yml
...ed/56694-mark-group-level-labels-in-label-api-as-such.yml
+5
-0
doc/api/labels.md
doc/api/labels.md
+16
-8
lib/api/entities.rb
lib/api/entities.rb
+3
-0
spec/requests/api/labels_spec.rb
spec/requests/api/labels_spec.rb
+4
-1
No files found.
changelogs/unreleased/56694-mark-group-level-labels-in-label-api-as-such.yml
0 → 100644
View file @
410789ad
---
title
:
'
API:
Indicate
if
label
is
a
project
label'
merge_request
:
25219
author
:
Robert Schilling
type
:
added
doc/api/labels.md
View file @
410789ad
...
...
@@ -30,7 +30,8 @@ Example response:
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
false
,
"priority"
:
10
"priority"
:
10
,
"is_project_label"
:
true
},
{
"id"
:
4
,
...
...
@@ -42,7 +43,8 @@ Example response:
"closed_issues_count"
:
5
,
"open_merge_requests_count"
:
0
,
"subscribed"
:
false
,
"priority"
:
null
"priority"
:
null
,
"is_project_label"
:
true
},
{
"id"
:
7
,
...
...
@@ -54,7 +56,8 @@ Example response:
"closed_issues_count"
:
3
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
false
,
"priority"
:
null
"priority"
:
null
,
"is_project_label"
:
true
},
{
"id"
:
8
,
...
...
@@ -66,7 +69,8 @@ Example response:
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
2
,
"subscribed"
:
false
,
"priority"
:
null
"priority"
:
null
,
"is_project_label"
:
false
},
{
"id"
:
9
,
...
...
@@ -78,7 +82,8 @@ Example response:
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
true
,
"priority"
:
null
"priority"
:
null
,
"is_project_label"
:
true
}
]
```
...
...
@@ -116,7 +121,8 @@ Example response:
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
0
,
"subscribed"
:
false
,
"priority"
:
null
"priority"
:
null
,
"is_project_label"
:
true
}
```
...
...
@@ -173,7 +179,8 @@ Example response:
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
2
,
"subscribed"
:
false
,
"priority"
:
null
"priority"
:
null
,
"is_project_label"
:
true
}
```
...
...
@@ -209,7 +216,8 @@ Example response:
"closed_issues_count"
:
0
,
"open_merge_requests_count"
:
1
,
"subscribed"
:
true
,
"priority"
:
null
"priority"
:
null
,
"is_project_label"
:
true
}
```
...
...
lib/api/entities.rb
View file @
410789ad
...
...
@@ -1034,6 +1034,9 @@ module API
expose
:priority
do
|
label
,
options
|
label
.
priority
(
options
[
:parent
])
end
expose
:is_project_label
do
|
label
,
options
|
label
.
is_a?
(
::
ProjectLabel
)
end
end
class
List
<
Grape
::
Entity
...
...
spec/requests/api/labels_spec.rb
View file @
410789ad
...
...
@@ -22,7 +22,7 @@ describe API::Labels do
expected_keys
=
%w(
id name color text_color description
open_issues_count closed_issues_count open_merge_requests_count
subscribed priority
subscribed priority
is_project_label
)
get
api
(
"/projects/
#{
project
.
id
}
/labels"
,
user
)
...
...
@@ -47,6 +47,7 @@ describe API::Labels do
expect
(
label1_response
[
'description'
]).
to
be_nil
expect
(
label1_response
[
'priority'
]).
to
be_nil
expect
(
label1_response
[
'subscribed'
]).
to
be_falsey
expect
(
label1_response
[
'is_project_label'
]).
to
be_truthy
expect
(
group_label_response
[
'open_issues_count'
]).
to
eq
(
1
)
expect
(
group_label_response
[
'closed_issues_count'
]).
to
eq
(
0
)
...
...
@@ -57,6 +58,7 @@ describe API::Labels do
expect
(
group_label_response
[
'description'
]).
to
be_nil
expect
(
group_label_response
[
'priority'
]).
to
be_nil
expect
(
group_label_response
[
'subscribed'
]).
to
be_falsey
expect
(
group_label_response
[
'is_project_label'
]).
to
be_falsey
expect
(
priority_label_response
[
'open_issues_count'
]).
to
eq
(
0
)
expect
(
priority_label_response
[
'closed_issues_count'
]).
to
eq
(
0
)
...
...
@@ -67,6 +69,7 @@ describe API::Labels do
expect
(
priority_label_response
[
'description'
]).
to
be_nil
expect
(
priority_label_response
[
'priority'
]).
to
eq
(
3
)
expect
(
priority_label_response
[
'subscribed'
]).
to
be_falsey
expect
(
priority_label_response
[
'is_project_label'
]).
to
be_truthy
end
end
...
...
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