Skip to content
Snippets Groups Projects
Verified Commit 82c5eb1b authored by Martin Weise's avatar Martin Weise
Browse files

WIP

parent cd3f0e67
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ export default class SOApiService { ...@@ -10,7 +10,7 @@ export default class SOApiService {
body: JSON.stringify(_body), body: JSON.stringify(_body),
}; };
return await fetch('http://localhost/api/semantic/' + url_method, requestOptions) return await fetch('http://localhost:5000/api/semantic/' + url_method, requestOptions)
.then((response) => { .then((response) => {
return response; return response;
...@@ -29,7 +29,7 @@ export default class SOApiService { ...@@ -29,7 +29,7 @@ export default class SOApiService {
referrerPolicy: 'no-referrer', referrerPolicy: 'no-referrer',
}; };
return await fetch('http://localhost/api/semantic/' + url_method + "?schema_id=" + schema_id + "&source_filter=" + source_filter + "&target_filter=" + target_filter, requestOptions) return await fetch('http://localhost:5000/api/semantic/' + url_method + "?schema_id=" + schema_id + "&source_filter=" + source_filter + "&target_filter=" + target_filter, requestOptions)
.then((response) => { .then((response) => {
return response; return response;
...@@ -38,4 +38,4 @@ export default class SOApiService { ...@@ -38,4 +38,4 @@ export default class SOApiService {
return error; return error;
}); });
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment