feat(auth): add oauth2 using github (CAS-64) #208

Merged
csimonis merged 9 commits from feat/github-oauth into main 2025-05-21 09:03:44 +00:00
3 changed files with 3 additions and 2 deletions
Showing only changes of commit d64b39fa69 - Show all commits

View file

@ -112,6 +112,7 @@ public class BlackJackService {
dealCardToPlayer(game);
dealCardToSplitHand(game);
return game;
}
private BlackJackGameEntity processGameBasedOnState(BlackJackGameEntity game) {

View file

@ -123,7 +123,7 @@
<p>Klicken Sie auf den folgenden Button, um Ihre E-Mail-Adresse zu bestätigen:</p>
<div style="text-align: center;">
<a href="${feUrl}/verify?token=${token}" class="button">E-Mail bestätigen</a>
<a href="${feUrl}/verify?email-token=${token}" class="button">E-Mail bestätigen</a>
</div>
<div class="info-box">

View file

@ -13,7 +13,7 @@ export class VerifyEmailComponent implements OnInit {
authService: AuthService = inject(AuthService);
ngOnInit(): void {
const token = this.route.snapshot.queryParamMap.get('token');
const token = this.route.snapshot.queryParamMap.get('email-token');
if (!token) {
this.router.navigate(['/']);