Compare commits

..

No commits in common. "v1.49.1" and "v1.49.0" have entirely different histories.

4 changed files with 5 additions and 5 deletions

View file

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

View file

@ -3,7 +3,7 @@ volumes:
services:
db:
image: postgres:17.5
image: postgres:17.4
container_name: casino-db
restart: unless-stopped
volumes:

View file

@ -3,7 +3,7 @@ volumes:
services:
db:
image: postgres:17.5
image: postgres:17.4
container_name: casino-db
restart: unless-stopped
volumes:

View file

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