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
fd8b841f
Commit
fd8b841f
authored
Nov 17, 2020
by
Lubber
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/redirect-to-swagger-ui' into develop
parents
6e26b92b
962dc012
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
main.py
src/data-hub/role-stage-discovery-microservice/app/main.py
+1
-1
main.py
src/data-hub/semantic-linking-microservice/app/main.py
+1
-1
main.py
...participation-hub/business-logic-microservice/app/main.py
+1
-1
main.py
src/rest-gateway/app/main.py
+1
-1
main.py
...ansaction-hub-in/trace-retrieval-microservice/app/main.py
+1
-1
No files found.
src/data-hub/role-stage-discovery-microservice/app/main.py
View file @
fd8b841f
...
...
@@ -31,7 +31,7 @@ def before_request():
@
app
.
route
(
'/'
,
methods
=
[
'GET'
])
def
api_root
():
return
'Endpoint of role-stage-discovery-microservice!'
return
redirect
(
'/api/ui'
)
# SSL configuration
certificate_path
=
get_resources_path
()
...
...
src/data-hub/semantic-linking-microservice/app/main.py
View file @
fd8b841f
...
...
@@ -40,7 +40,7 @@ def before_request():
@
app
.
route
(
'/'
,
methods
=
[
'GET'
])
def
api_root
():
return
'Endpoint of semantic-linking-microservice!'
return
redirect
(
'/api/ui'
)
# SSL configuration
certificate_path
=
get_resources_path
()
...
...
src/participation-hub/business-logic-microservice/app/main.py
View file @
fd8b841f
...
...
@@ -28,7 +28,7 @@ def before_request():
@
app
.
route
(
'/'
,
methods
=
[
'GET'
])
def
api_root
():
return
'Endpoint of business-logic-microservice!'
return
redirect
(
'/api/ui'
)
# SSL configuration
certificate_path
=
get_resources_path
()
...
...
src/rest-gateway/app/main.py
View file @
fd8b841f
...
...
@@ -34,7 +34,7 @@ def before_request():
@
app
.
route
(
'/'
,
methods
=
[
'GET'
])
def
api_root
():
return
'Endpoint of SMART RESTful API Gateway!'
return
redirect
(
'/api/ui'
)
# SSL configuration
certificate_path
=
get_resources_path
()
...
...
src/transaction-hub-in/trace-retrieval-microservice/app/main.py
View file @
fd8b841f
...
...
@@ -43,7 +43,7 @@ def before_request():
@
app
.
route
(
'/'
,
methods
=
[
'GET'
])
def
api_root
():
return
'Endpoint of trace-retrieval-microservice!'
return
redirect
(
'/api/ui'
)
# SSL configuration
certificate_path
=
get_resources_path
()
...
...
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