fixing the origin requests once and for all
All checks were successful
Build and test backend / Test-backend (push) Successful in 1m20s
deploy to production / deploy-frontend (push) Successful in 25s
deploy to production / deploy-backend (push) Successful in 2m21s
Build and test backend / Build-backend (push) Successful in 2m13s
Build and test FrontEnd / Build-frontend (push) Successful in 26s

This commit is contained in:
Debucquoy Anthony 2024-03-09 18:54:46 +01:00
parent 31159ebb5c
commit 8fdfb470cb

View File

@ -9,7 +9,7 @@ import ovh.herisson.Clyde.Services.AuthenticatorService;
import java.util.Date;
@RestController
@CrossOrigin(origins = "http://localhost:5173", allowCredentials = "true")
@CrossOrigin(originPatterns = "*", allowCredentials = "true")
public class LoginController {
private final AuthenticatorService authServ;