You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by he...@apache.org on 2016/01/27 21:22:32 UTC

[18/50] allura git commit: [#8044] fix RAML syntax

[#8044] fix RAML syntax


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/14ccf22b
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/14ccf22b
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/14ccf22b

Branch: refs/heads/hs/8035
Commit: 14ccf22b4690fa0dcc1f72a651c9178fc48d3b4c
Parents: 5adc337
Author: Dave Brondsema <da...@brondsema.net>
Authored: Wed Jan 27 12:42:34 2016 -0500
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Wed Jan 27 12:42:34 2016 -0500

----------------------------------------------------------------------
 Allura/docs/api-rest/api.raml | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/14ccf22b/Allura/docs/api-rest/api.raml
----------------------------------------------------------------------
diff --git a/Allura/docs/api-rest/api.raml b/Allura/docs/api-rest/api.raml
index 9c50d9d..68d8a0f 100755
--- a/Allura/docs/api-rest/api.raml
+++ b/Allura/docs/api-rest/api.raml
@@ -740,13 +740,14 @@ documentation:
 /notification:
   description: |
     Get current Site Notification
-  uriParameters:
-    cookie:
-      description: site-notification cookie value
-      example: "56a111736c4ff90011b9f932-1-False"
-    url:
-      description: page where must be shown notification
-      example: "/p/test-project"
-    tool_name:
-      description: tool's name which used on page
-      exaple: "Git"
\ No newline at end of file
+  get:
+    queryParameters:
+      cookie:
+        description: site-notification cookie value
+        example: "56a111736c4ff90011b9f932-1-False"
+      url:
+        description: page where notification will be shown
+        example: "/p/test-project"
+      tool_name:
+        description: tool's name for current page
+        example: "Git"
\ No newline at end of file