diff options
author | Alexey Romanov <jobmail37@gmail.com> | 2012-12-10 12:57:38 +0400 |
---|---|---|
committer | Alexey Romanov <jobmail37@gmail.com> | 2012-12-10 12:57:38 +0400 |
commit | 727886810d22a3b91a6b194f94ff7f07ced3c172 (patch) | |
tree | 2586613d4fa7c2916947d6eaa820b00a8b400be6 | |
parent | apps/redmine: add list_issue_statuses (diff) | |
download | api-description-727886810d22a3b91a6b194f94ff7f07ced3c172.tar.gz |
apps/redmine: add list_issue_categories
-rw-r--r-- | apps/redmine.json | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/apps/redmine.json b/apps/redmine.json index 14c6e0c..93b437c 100644 --- a/apps/redmine.json +++ b/apps/redmine.json @@ -5,7 +5,7 @@ "json", "xml" ], - "version" : "0.2", + "version" : "0.3", "methods" :{ "list_issues" : { @@ -358,6 +358,16 @@ ], "method" : "GET", "authentication" : true + }, + + "list_issue_categories" : { + "path" : "/projects/:project_id/issue_categories.:format", + "required_params" : [ + "project_id", + "format" + ], + "method" : "GET", + "authentication" : true } }, |