From 2173fd54505e6b5a3644ddd6f78b13df6ce6a777 Mon Sep 17 00:00:00 2001 From: Radoslav Radev Date: Sun, 17 Mar 2024 20:06:20 +0100 Subject: [PATCH] test CI Account Service demo 3 --- Backend/Account/Services/AccountService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Backend/Account/Services/AccountService.cs b/Backend/Account/Services/AccountService.cs index dec99eb..8428d8f 100644 --- a/Backend/Account/Services/AccountService.cs +++ b/Backend/Account/Services/AccountService.cs @@ -20,7 +20,7 @@ public class AccountService(DatabaseContext _accountDbContext, IConfiguration co var authToken = AuthTokenGenerator.GenerateOwnAuthToken(account.AccId.ToString(),configuration); return new Tuple(AccountMapper.AccountToAccountDto(account), authToken); } - + public async Task> Register(RegisterRequestDTO request) {