You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2017/10/20 18:57:15 UTC

[kibble] 12/12: update yaml spec

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit b5f0db8236719820cf8b34986b03cebb99288927
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Oct 20 20:56:50 2017 +0200

    update yaml spec
---
 api/yaml/openapi.yaml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/api/yaml/openapi.yaml b/api/yaml/openapi.yaml
index 80d9f6c..024e382 100644
--- a/api/yaml/openapi.yaml
+++ b/api/yaml/openapi.yaml
@@ -2229,6 +2229,35 @@ paths:
       security:
       - cookieAuth: []
       summary: Add a new source
+  /api/verify/{email}/{vcode}:
+    get:
+      parameters:
+      - description: Email address of account
+        in: path
+        name: email
+        required: true
+        schema:
+          type: string
+      - description: Verification code
+        in: path
+        name: vcode
+        required: true
+        schema:
+          type: string
+      responses:
+        '200':
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ActionCompleted'
+          description: 200 Response
+        default:
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/Error'
+          description: unexpected error
+      summary: Verify an account
   /api/views:
     delete:
       requestBody:

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.