diff options
author | François Perrad <francois.perrad@gadz.org> | 2012-12-17 10:29:12 -0800 |
---|---|---|
committer | François Perrad <francois.perrad@gadz.org> | 2012-12-17 10:29:12 -0800 |
commit | 9ef52130a7d0fdcc431fbfba13b1212d0b4ea2f5 (patch) | |
tree | 2586613d4fa7c2916947d6eaa820b00a8b400be6 | |
parent | fix previous commit (diff) | |
parent | apps/redmine: add list_issue_categories (diff) | |
download | api-description-9ef52130a7d0fdcc431fbfba13b1212d0b4ea2f5.tar.gz |
Merge pull request #12 from E-Fir/ar/tmp1323/add_issue_categories
added issue categories and issue statuses to redmine API
-rw-r--r-- | apps/redmine.json | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/apps/redmine.json b/apps/redmine.json index 5e745a4..93b437c 100644 --- a/apps/redmine.json +++ b/apps/redmine.json @@ -5,7 +5,7 @@ "json", "xml" ], - "version" : "0.1", + "version" : "0.3", "methods" :{ "list_issues" : { @@ -349,7 +349,26 @@ ], "method" : "GET", "authentication" : true - } + }, + + "list_issue_statuses" : { + "path" : "/issue_statuses.:format", + "required_params" : [ + "format" + ], + "method" : "GET", + "authentication" : true + }, + + "list_issue_categories" : { + "path" : "/projects/:project_id/issue_categories.:format", + "required_params" : [ + "project_id", + "format" + ], + "method" : "GET", + "authentication" : true + } }, "meta" : { |