mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +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>
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class ValidateAccessTokenResponseDto {
|
|
constructor(authStatus: boolean) {
|
|
this.authStatus = authStatus;
|
|
}
|
|
|
|
@ApiProperty({ type: 'boolean' })
|
|
authStatus!: boolean;
|
|
}
|