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
27db2926
Commit
27db2926
authored
Aug 31, 2020
by
Alexander Lercher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed endpoint location
'rest' to 'routes'
parent
21135416
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
swagger.yml
...hub/semantic-linking-microservice/app/configs/swagger.yml
+10
-10
__init__.py
...-hub/semantic-linking-microservice/app/routes/__init__.py
+0
-0
debug.py
...ata-hub/semantic-linking-microservice/app/routes/debug.py
+0
-0
functions.py
...hub/semantic-linking-microservice/app/routes/functions.py
+0
-0
graphinfo.py
...hub/semantic-linking-microservice/app/routes/graphinfo.py
+0
-0
layers.py
...ta-hub/semantic-linking-microservice/app/routes/layers.py
+0
-0
multilayer.png
...b/semantic-linking-microservice/app/routes/multilayer.png
+0
-0
multilayer.py
...ub/semantic-linking-microservice/app/routes/multilayer.py
+0
-0
raw-dataset.py
...b/semantic-linking-microservice/app/routes/raw-dataset.py
+0
-0
No files found.
src/data-hub/semantic-linking-microservice/app/configs/swagger.yml
View file @
27db2926
...
...
@@ -14,7 +14,7 @@ basePath: "/api"
paths
:
/debug
:
post
:
operationId
:
"
r
est
.debug.echo"
operationId
:
"
r
outes
.debug.echo"
tags
:
-
"
Echo"
summary
:
"
Echo
function
for
debugging
purposes"
...
...
@@ -32,7 +32,7 @@ paths:
#Raw_dataset region
/raw_dataset
:
post
:
operationId
:
"
r
est
.raw-dataset.post"
operationId
:
"
r
outes
.raw-dataset.post"
tags
:
-
"
Raw_Dataset"
summary
:
"
Add
a
new
dataset
[TODO:
or
overwrite
an
existing
one]"
...
...
@@ -49,7 +49,7 @@ paths:
400
:
description
:
"
Invalid
input"
get
:
operationId
:
"
r
est
.raw-dataset.get"
operationId
:
"
r
outes
.raw-dataset.get"
tags
:
-
"
raw_dataset"
summary
:
"
Get
all
datasets"
...
...
@@ -62,7 +62,7 @@ paths:
/raw_dataset/{name}
:
get
:
operationId
:
"
r
est
.raw-dataset.get_by_usecase"
operationId
:
"
r
outes
.raw-dataset.get_by_usecase"
tags
:
-
"
raw_dataset"
summary
:
"
Get
single
usecase
dataset"
...
...
@@ -86,7 +86,7 @@ paths:
#region Layers
/layers
:
get
:
operationId
:
"
r
est
.layers.get"
operationId
:
"
r
outes
.layers.get"
tags
:
-
"
Layers"
summary
:
"
Get
all
layer
data"
...
...
@@ -99,7 +99,7 @@ paths:
/layers/{name}
:
get
:
operationId
:
"
r
est
.layers.get_by_name"
operationId
:
"
r
outes
.layers.get_by_name"
tags
:
-
"
Layers"
summary
:
"
Get
single
layer
data"
...
...
@@ -119,7 +119,7 @@ paths:
/layers/{name}/nodes
:
get
:
operationId
:
"
r
est
.layers.get_nodes"
operationId
:
"
r
outes
.layers.get_nodes"
tags
:
-
"
Layers"
summary
:
"
Get
all
individual
nodes
for
the
layer"
...
...
@@ -140,7 +140,7 @@ paths:
/multilayer
:
get
:
operationId
:
"
r
est
.multilayer.test_multilayer_get_function"
operationId
:
"
r
outes
.multilayer.test_multilayer_get_function"
tags
:
-
"
Multilayer"
summary
:
"
some
demo
testing"
...
...
@@ -151,7 +151,7 @@ paths:
/agi/multilayer/multilayer.png
:
get
:
operationId
:
"
r
est
.multilayer.get_image"
operationId
:
"
r
outes
.multilayer.get_image"
tags
:
-
"
Multilayer"
summary
:
"
Returning
the
multilayer
created
from
AGI
data"
...
...
@@ -164,7 +164,7 @@ paths:
/graphinfo
:
get
:
operationId
:
"
r
est
.graphinfo.get"
operationId
:
"
r
outes
.graphinfo.get"
tags
:
-
"
GraphInfo"
summary
:
"
Get
info
about
clustered
nodes"
...
...
src/data-hub/semantic-linking-microservice/app/r
est
/__init__.py
→
src/data-hub/semantic-linking-microservice/app/r
outes
/__init__.py
View file @
27db2926
File moved
src/data-hub/semantic-linking-microservice/app/r
est
/debug.py
→
src/data-hub/semantic-linking-microservice/app/r
outes
/debug.py
View file @
27db2926
File moved
src/data-hub/semantic-linking-microservice/app/r
est
/functions.py
→
src/data-hub/semantic-linking-microservice/app/r
outes
/functions.py
View file @
27db2926
File moved
src/data-hub/semantic-linking-microservice/app/r
est
/graphinfo.py
→
src/data-hub/semantic-linking-microservice/app/r
outes
/graphinfo.py
View file @
27db2926
File moved
src/data-hub/semantic-linking-microservice/app/r
est
/layers.py
→
src/data-hub/semantic-linking-microservice/app/r
outes
/layers.py
View file @
27db2926
File moved
src/data-hub/semantic-linking-microservice/app/r
est
/multilayer.png
→
src/data-hub/semantic-linking-microservice/app/r
outes
/multilayer.png
View file @
27db2926
File moved
src/data-hub/semantic-linking-microservice/app/r
est
/multilayer.py
→
src/data-hub/semantic-linking-microservice/app/r
outes
/multilayer.py
View file @
27db2926
File moved
src/data-hub/semantic-linking-microservice/app/r
est
/raw-dataset.py
→
src/data-hub/semantic-linking-microservice/app/r
outes
/raw-dataset.py
View file @
27db2926
File moved
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