about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrançois Perrad <francois.perrad@gadz.org>2012-12-17 10:29:12 -0800
committerFrançois Perrad <francois.perrad@gadz.org>2012-12-17 10:29:12 -0800
commit9ef52130a7d0fdcc431fbfba13b1212d0b4ea2f5 (patch)
tree2586613d4fa7c2916947d6eaa820b00a8b400be6
parentfix previous commit (diff)
parentapps/redmine: add list_issue_categories (diff)
downloadapi-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.json23
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" : {