Added /public to public endpoints. Updated version

This commit is contained in:
2024-04-01 22:32:41 +02:00
parent 80610b774a
commit da5abba5b9
5 changed files with 9 additions and 9 deletions

View File

@ -32,7 +32,7 @@ export class CreditsComponent {
}
getVersion() {
axios.get(this.developmentStore.getBaseUrl() + 'api/v1/version')
axios.get(this.developmentStore.getBaseUrl() + 'api/v1/public/version')
.then((response) => {
this.version = response.data;
})