Files
immich/server/src/domain/auth/response-dto/oauth-config-response.dto.ts

8 lines
158 B
TypeScript
Raw Normal View History

export class OAuthConfigResponseDto {
enabled!: boolean;
passwordLoginEnabled!: boolean;
url?: string;
buttonText?: string;
autoLaunch?: boolean;
}