Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
4f1e90efdf |
|||
991ff11fed |
|||
88b68f0547 |
|||
893939a081 |
|||
156379c12c |
4 changed files with 5 additions and 5 deletions
|
@ -30,7 +30,7 @@ public class UserService {
|
|||
createUserDto.getEmail(),
|
||||
createUserDto.getUsername(),
|
||||
passwordEncoder.encode(createUserDto.getPassword()),
|
||||
BigDecimal.valueOf(10) // Starting balance
|
||||
BigDecimal.valueOf(100) // Starting balance
|
||||
);
|
||||
|
||||
return userRepository.save(user);
|
||||
|
|
|
@ -3,7 +3,7 @@ volumes:
|
|||
|
||||
services:
|
||||
db:
|
||||
image: postgres:17.4
|
||||
image: postgres:17.5
|
||||
container_name: casino-db
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
|
|
|
@ -3,7 +3,7 @@ volumes:
|
|||
|
||||
services:
|
||||
db:
|
||||
image: postgres:17.4
|
||||
image: postgres:17.5
|
||||
container_name: casino-db
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
|
|
|
@ -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">200% bis zu 500€</div>
|
||||
<p class="bonus-description">+ 200 Freispiele</p>
|
||||
<div class="welcome-bonus">von bis zu €100</div>
|
||||
<p class="bonus-description">Fangen Sie an, zu gewinnen!</p>
|
||||
|
||||
<div class="flex justify-center space-x-4 mt-6">
|
||||
@if (authService.isLoggedIn()) {
|
||||
|
|
Reference in a new issue