Archived
1
0

Generalize initial app logic

This commit is contained in:
Asher
2020-02-05 18:47:00 -06:00
parent 205775ac97
commit 6cebfa469d
9 changed files with 78 additions and 57 deletions

View File

@ -23,11 +23,15 @@ export enum SessionError {
}
export interface LoginRequest {
password: string
basePath: string
password: string
}
export interface LoginResponse {
/**
* An application to load immediately after logging in.
*/
app?: Application
success: boolean
}