From 8176448024f3f6860865bfe4c1f7fdc073ee6ad2 Mon Sep 17 00:00:00 2001
From: vekaste <vekaste@stud.ntnu.no>
Date: Thu, 2 May 2024 20:27:36 +0200
Subject: [PATCH] feat: updated user DTO

---
 src/api/models/UserDTO.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/api/models/UserDTO.ts b/src/api/models/UserDTO.ts
index f3426ff..5d036f8 100644
--- a/src/api/models/UserDTO.ts
+++ b/src/api/models/UserDTO.ts
@@ -15,8 +15,8 @@ export type UserDTO = {
     createdAt?: string;
     role?: string;
     subscriptionLevel?: string;
-    checkingAccountBBAN?: BankAccountResponseDTO;
-    savingsAccountBBAN?: BankAccountResponseDTO;
+    checkingAccount?: BankAccountResponseDTO;
+    savingsAccount?: BankAccountResponseDTO;
     point?: PointDTO;
     streak?: StreakDTO;
 };
-- 
GitLab