mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
* refactor: auth * chore: tests * Remove await on non-async method * refactor: constants * chore: remove extra async Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
export class OAuthConfigResponseDto {
|
|
enabled!: boolean;
|
|
passwordLoginEnabled!: boolean;
|
|
url?: string;
|
|
buttonText?: string;
|
|
autoLaunch?: boolean;
|
|
}
|