diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-04 14:20:26 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:58 -0300 |
commit | 5317f6ea943c84ec0dc68a934f953e667fae1178 (patch) | |
tree | fb29089d8f2ecb9667e68e144c5f1ab32c039566 /spec/fixtures | |
parent | a8b2d7f380a2d87557e278011fb91044de103d02 (diff) | |
download | gitlab-ce-5317f6ea943c84ec0dc68a934f953e667fae1178.tar.gz |
Include the Issue#assignee in the response when listing issues
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/issue.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/issue.json b/spec/fixtures/api/schemas/issue.json index 0a9bf4e0fb7..3da9b241047 100644 --- a/spec/fixtures/api/schemas/issue.json +++ b/spec/fixtures/api/schemas/issue.json @@ -24,6 +24,12 @@ }, "title": { "type": "string" } } + }, + "assignee": { + "id": { "type": "integet" }, + "name": { "type": "string" }, + "username": { "type": "string" }, + "avatar_url": { "type": "uri" } } }, "additionalProperties": false |