mirror of
https://github.com/immich-app/immich.git
synced 2026-03-16 15:34:55 -04:00
* refactor: oauth to use feature flags * chore: open api * chore: e2e test for authorize endpoint
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class OAuthConfigDto {
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
redirectUri!: string;
|
|
}
|