BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
246bb231
Commit
246bb231
authored
Aug 19, 2016
by
Douglas Barbosa Alexandre
Committed by
Phil Hughes
Aug 31, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Returns the total number of issues in the JSON response
parent
4d042afe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
8 deletions
+22
-8
issues_controller.rb
app/controllers/projects/boards/issues_controller.rb
+9
-6
issues.json
spec/fixtures/api/schemas/issues.json
+13
-2
No files found.
app/controllers/projects/boards/issues_controller.rb
View file @
246bb231
...
...
@@ -8,12 +8,15 @@ module Projects
issues
=
::
Boards
::
Issues
::
ListService
.
new
(
project
,
current_user
,
filter_params
).
execute
issues
=
issues
.
page
(
params
[
:page
])
render
json:
issues
.
as_json
(
only:
[
:iid
,
:title
,
:confidential
],
include:
{
assignee:
{
only:
[
:id
,
:name
,
:username
],
methods:
[
:avatar_url
]
},
labels:
{
only:
[
:id
,
:title
,
:description
,
:color
,
:priority
],
methods:
[
:text_color
]
}
})
render
json:
{
issues:
issues
.
as_json
(
only:
[
:iid
,
:title
,
:confidential
],
include:
{
assignee:
{
only:
[
:id
,
:name
,
:username
],
methods:
[
:avatar_url
]
},
labels:
{
only:
[
:id
,
:title
,
:description
,
:color
,
:priority
],
methods:
[
:text_color
]
}
}),
size:
issues
.
total_count
}
end
def
update
...
...
spec/fixtures/api/schemas/issues.json
View file @
246bb231
{
"type"
:
"array"
,
"items"
:
{
"$ref"
:
"issue.json"
}
"type"
:
"object"
,
"required"
:
[
"issues"
,
"size"
],
"properties"
:
{
"issues"
:
{
"type"
:
"array"
,
"items"
:
{
"$ref"
:
"issue.json"
}
},
"size"
:
{
"type"
:
"integer"
}
},
"additionalProperties"
:
false
}
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