Compare commits

..

2 Commits

Author SHA1 Message Date
TeamCity
ef073afd5e ci: bump version to v0.19.0 2026-01-07 16:00:15 +00:00
92a7bc0586 feat: Update joinGame endpoint to accept gameId as a path parameter 2026-01-07 16:56:34 +01:00
3 changed files with 7 additions and 3 deletions

View File

@@ -140,3 +140,8 @@
### Features
* Add caching headers for env.js in Nginx configuration ([d8b3904](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/d8b3904cbc8b08ed9522d7b9b4fa8af79bc75def))
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.18.0...0.0.0) (2026-01-07)
### Features
* Update joinGame endpoint to accept gameId as a path parameter ([92a7bc0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/92a7bc05866b77053ebb1d074ad207be8348f9d6))

View File

@@ -14,8 +14,7 @@ const startGameQuasar = async() => {
return;
}
isLoading.value = true;
axios.post(`${api}/joinGame`, {gameId: lobbyCode.value.toString()}, {withCredentials: true}).then(response => {
const responseData = response.data
axios.post(`${api}/joinGame/${lobbyCode.value.toString()}`, {}, {withCredentials: true}).then(() => {
$q.notify({
message: `Lobby "${lobbyCode.value}" erfolgreich gefunden`,
color: 'green-6',

View File

@@ -1,3 +1,3 @@
MAJOR=0
MINOR=18
MINOR=19
PATCH=0