Files
immich/server/src/domain/auth/response-dto/oauth-config-response.dto.ts
Jason Rasmussen 08c7054845 refactor(server): auth/oauth (#3242)
* refactor(server): auth/oauth

* fix: show server error message on login failure
2023-07-14 23:03:56 -05:00

8 lines
158 B
TypeScript

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