08c7054845
* refactor(server): auth/oauth * fix: show server error message on login failure
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
export class OAuthConfigResponseDto {
|
|
enabled!: boolean;
|
|
passwordLoginEnabled!: boolean;
|
|
url?: string;
|
|
buttonText?: string;
|
|
autoLaunch?: boolean;
|
|
}
|