Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SMART
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UNI-KLU
SMART
Commits
088d8d87
Commit
088d8d87
authored
Sep 02, 2020
by
Manuel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
restGateway: authenticated request POST /trace
parent
2283c7a0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
64 deletions
+36
-64
swagger.yml
src/rest-gateway/app/configs/swagger.yml
+19
-32
swagger_local.yml
src/rest-gateway/app/configs/swagger_local.yml
+17
-29
user.py
src/rest-gateway/app/routes/user.py
+0
-3
No files found.
src/rest-gateway/app/configs/swagger.yml
View file @
088d8d87
...
...
@@ -15,23 +15,8 @@ produces:
basePath
:
"
/api"
# Paths supported by the server application
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}
:
post
:
operationId
:
"
routes.user.verify"
...
...
@@ -154,6 +139,8 @@ paths:
/trace
:
post
:
security
:
-
JwtAdmin
:
[]
operationId
:
"
routes.blockchain_trace.receive"
tags
:
-
"
Blockchain
Trace"
...
...
src/rest-gateway/app/configs/swagger_local.yml
View file @
088d8d87
...
...
@@ -15,18 +15,6 @@ basePath: "/api"
# Paths supported by the server application
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}
:
post
:
operationId
:
"
routes.user.verify"
...
...
src/rest-gateway/app/routes/user.py
View file @
088d8d87
...
...
@@ -9,9 +9,6 @@ import bcrypt
import
jwt
import
json
def
secret
():
return
"Pineapple does not belong to pizza!"
def
verify
(
token
):
'''
verifies the validity of a JWT token.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment