mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 01:11:32 +03:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
export class OAuthConfigResponseDto {
|
|
enabled!: boolean;
|
|
passwordLoginEnabled!: boolean;
|
|
url?: string;
|
|
buttonText?: string;
|
|
autoLaunch?: boolean;
|
|
}
|