From e824eb4197dbcc81d38e93fac5c2cfa0422fbe16 Mon Sep 17 00:00:00 2001 From: henridb <henridb@stud.ntnu.no> Date: Thu, 18 Apr 2024 10:00:01 +0200 Subject: [PATCH] fix: add auth response variables --- src/api/models/AuthenticationResponse.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/api/models/AuthenticationResponse.ts b/src/api/models/AuthenticationResponse.ts index e977322..47169ae 100644 --- a/src/api/models/AuthenticationResponse.ts +++ b/src/api/models/AuthenticationResponse.ts @@ -3,6 +3,9 @@ /* tslint:disable */ /* eslint-disable */ export type AuthenticationResponse = { + firstName?: string; + lastName?: string; + role?: string; token?: string; }; -- GitLab