1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-06 20:10:05 +00:00

fix(auth): login and check session returns username + user full name

This commit is contained in:
Saad Jutt
2022-09-25 01:11:22 +05:00
parent 2cbba38af5
commit a1c09ec802
4 changed files with 79 additions and 58 deletions

View File

@@ -5,4 +5,11 @@ export interface LoginOptions {
export interface LoginResult {
isLoggedIn: boolean
userName: string
userLongName: string
}
export interface LoginResultInternal {
isLoggedIn: boolean
userName: string
userLongName: string
loginForm?: any
}