a26ed3d1a6
* refactor: oauth to use feature flags * chore: open api * chore: e2e test for authorize endpoint
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
export class OAuthConfigResponseDto {
|
|
enabled!: boolean;
|
|
passwordLoginEnabled!: boolean;
|
|
url?: string;
|
|
buttonText?: string;
|
|
autoLaunch?: boolean;
|
|
}
|
|
|
|
export class OAuthAuthorizeResponseDto {
|
|
url!: string;
|
|
}
|