Merge pull request 'fix: update starting balance and welcome bonus text' (!178) from task/CAS-68/AdjustStartMoney into main
All checks were successful
Release / Release (push) Successful in 1m36s
Release / Build Frontend Image (push) Successful in 37s
Release / Build Backend Image (push) Successful in 40s

Reviewed-on: #178
Reviewed-by: Jan K9f <jan@kjan.email>
This commit is contained in:
Jan-Marlon Leibl 2025-05-14 07:00:24 +00:00
commit 4f1e90efdf
No known key found for this signature in database
GPG key ID: 944223E4D46B7412
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ public class UserService {
createUserDto.getEmail(), createUserDto.getEmail(),
createUserDto.getUsername(), createUserDto.getUsername(),
passwordEncoder.encode(createUserDto.getPassword()), passwordEncoder.encode(createUserDto.getPassword()),
BigDecimal.valueOf(10) // Starting balance BigDecimal.valueOf(100) // Starting balance
); );
return userRepository.save(user); return userRepository.save(user);

View file

@ -7,8 +7,8 @@
<h1 class="text-3xl sm:text-4xl lg:text-5xl section-heading mb-2 sm:mb-3"> <h1 class="text-3xl sm:text-4xl lg:text-5xl section-heading mb-2 sm:mb-3">
Willkommensbonus Willkommensbonus
</h1> </h1>
<div class="welcome-bonus">200% bis zu 500€</div> <div class="welcome-bonus">von bis zu €100</div>
<p class="bonus-description">+ 200 Freispiele</p> <p class="bonus-description">Fangen Sie an, zu gewinnen!</p>
<div class="flex justify-center space-x-4 mt-6"> <div class="flex justify-center space-x-4 mt-6">
@if (authService.isLoggedIn()) { @if (authService.isLoggedIn()) {