Skip to content

Commit

Permalink
API: expose issues project id
Browse files Browse the repository at this point in the history
  • Loading branch information
NARKOZ committed Jul 25, 2012
1 parent 949b1df commit f7dd067
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions doc/api/issues.md
Expand Up @@ -10,6 +10,7 @@ GET /issues
[
{
"id": 43,
"project_id": 8,
"title": "4xx/5xx pages",
"description": "",
"labels": [ ],
Expand All @@ -28,6 +29,7 @@ GET /issues
},
{
"id": 42,
"project_id": 8,
"title": "Add user settings",
"description": "",
"labels": [
Expand Down Expand Up @@ -91,6 +93,7 @@ Parameters:
```json
{
"id": 42,
"project_id": 8,
"title": "Add user settings",
"description": "",
"labels": [
Expand Down
4 changes: 3 additions & 1 deletion lib/api/entities.rb
Expand Up @@ -31,7 +31,9 @@ class Milestone < Grape::Entity
end

class Issue < Grape::Entity
expose :id, :title, :description
expose :id
expose (:project_id) {|issue| issue.project.id}
expose :title, :description
expose :label_list, :as => :labels
expose :milestone, :using => Entities::Milestone
expose :assignee, :author, :using => Entities::UserBasic
Expand Down

0 comments on commit f7dd067

Please sign in to comment.