Compare commits

..

4 Commits

Author SHA1 Message Date
92a7bc0586 feat: Update joinGame endpoint to accept gameId as a path parameter 2026-01-07 16:56:34 +01:00
TeamCity
352b7fd3ff ci: bump version to v0.18.0 2026-01-07 13:37:03 +00:00
3a62fbc129 Merge remote-tracking branch 'origin/main' 2026-01-07 14:33:44 +01:00
TeamCity
c1960a4e33 ci: bump version to v0.17.0 2026-01-07 13:21:19 +00:00
3 changed files with 13 additions and 4 deletions

View File

@@ -130,3 +130,13 @@
* Update Dockerfile for multi-platform support and add nginx configuration ([37b88a1](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/37b88a108c71e20fc2caee950acd23cf2bb81190))
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.16.0...0.0.0) (2026-01-06)
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.16.1...0.0.0) (2026-01-07)
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.16.2...0.0.0) (2026-01-07)
### Features
* Add caching headers for env.js in Nginx configuration ([93e5af7](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/93e5af7402edb9fb9662e37d9b2b8c48d250c36e))
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.17.0...0.0.0) (2026-01-07)
### Features
* Add caching headers for env.js in Nginx configuration ([d8b3904](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/d8b3904cbc8b08ed9522d7b9b4fa8af79bc75def))

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=16
PATCH=2
MINOR=18
PATCH=0