refactor(server): auth enums (#13552)

This commit is contained in:
Jason Rasmussen 2024-10-17 13:17:32 -04:00 committed by GitHub
parent d9949434f6
commit e3fc4d7b0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 37 additions and 41 deletions

View file

@ -4,7 +4,6 @@ import { Request, Response } from 'express';
import {
AuthDto,
ChangePasswordDto,
ImmichCookie,
LoginCredentialDto,
LoginResponseDto,
LogoutResponseDto,
@ -12,7 +11,7 @@ import {
ValidateAccessTokenResponseDto,
} from 'src/dtos/auth.dto';
import { UserAdminResponseDto } from 'src/dtos/user.dto';
import { AuthType } from 'src/enum';
import { AuthType, ImmichCookie } from 'src/enum';
import { Auth, Authenticated, GetLoginDetails } from 'src/middleware/auth.guard';
import { AuthService, LoginDetails } from 'src/services/auth.service';
import { respondWithCookie, respondWithoutCookie } from 'src/utils/response';