Make routing base path agnostic
This commit is contained in:
@ -22,6 +22,11 @@ export enum SessionError {
|
||||
Unknown,
|
||||
}
|
||||
|
||||
export interface LoginRequest {
|
||||
password: string
|
||||
basePath: string
|
||||
}
|
||||
|
||||
export interface LoginResponse {
|
||||
success: boolean
|
||||
}
|
||||
|
@ -3,8 +3,9 @@ import { Application } from "../common/api"
|
||||
|
||||
export interface Options {
|
||||
app?: Application
|
||||
authed?: boolean
|
||||
logLevel?: number
|
||||
authed: boolean
|
||||
basePath: string
|
||||
logLevel: number
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user