mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 17:25:35 +03: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>
10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class OAuthCallbackDto {
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
@ApiProperty()
|
|
url!: string;
|
|
}
|