Commit 088d8d87 authored by Manuel's avatar Manuel

restGateway: authenticated request POST /trace

parent 2283c7a0
...@@ -15,23 +15,8 @@ produces: ...@@ -15,23 +15,8 @@ produces:
basePath: "/api" basePath: "/api"
# Paths supported by the server application # Paths supported by the server application
paths: paths:
/secret:
get:
security:
- JwtRegular: []
operationId: "routes.user.secret"
tags:
- "User"
summary: "Testpage for authentication"
description: "Should only be accessible with a valid JWT token in the 'authorization' header"
responses:
'200':
description: "OK"
'401':
description: "No or an invalid token was provided"
/tokens/{token}: /tokens/{token}:
post: post:
operationId: "routes.user.verify" operationId: "routes.user.verify"
...@@ -154,6 +139,8 @@ paths: ...@@ -154,6 +139,8 @@ paths:
/trace: /trace:
post: post:
security:
- JwtAdmin: []
operationId: "routes.blockchain_trace.receive" operationId: "routes.blockchain_trace.receive"
tags: tags:
- "Blockchain Trace" - "Blockchain Trace"
......
...@@ -15,18 +15,6 @@ basePath: "/api" ...@@ -15,18 +15,6 @@ basePath: "/api"
# Paths supported by the server application # Paths supported by the server application
paths: paths:
/secret:
get:
operationId: "routes.user.secret"
tags:
- "User"
summary: "Testpage for authentication"
description: "Should only be accessible with a valid JWT token in the 'authorization' header"
responses:
'200':
description: "OK"
'401':
description: "No or an invalid token was provided"
/tokens/{token}: /tokens/{token}:
post: post:
operationId: "routes.user.verify" operationId: "routes.user.verify"
......
...@@ -9,9 +9,6 @@ import bcrypt ...@@ -9,9 +9,6 @@ import bcrypt
import jwt import jwt
import json import json
def secret():
return "Pineapple does not belong to pizza!"
def verify(token): def verify(token):
''' '''
verifies the validity of a JWT token. verifies the validity of a JWT token.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment