diff --git a/src/authchecker.ts b/src/authchecker.ts index f6ffdad..36cb40b 100644 --- a/src/authchecker.ts +++ b/src/authchecker.ts @@ -4,7 +4,7 @@ import { Action } from "routing-controllers"; import { getConnectionManager } from 'typeorm'; import { config } from './config'; import { IllegalJWTError, NoPermissionError, UserNonexistantOrRefreshtokenInvalidError } from './errors/AuthError'; -import { JwtCreator, JwtUser } from './JwtCreator'; +import { JwtCreator, JwtUser } from './jwtcreator'; import { User } from './models/entities/User'; /** diff --git a/src/models/actions/CreateAuth.ts b/src/models/actions/CreateAuth.ts index 2584aa2..adec57c 100644 --- a/src/models/actions/CreateAuth.ts +++ b/src/models/actions/CreateAuth.ts @@ -3,7 +3,7 @@ import { IsEmail, IsOptional, IsString } from 'class-validator'; import { getConnectionManager } from 'typeorm'; import { InvalidCredentialsError, PasswordNeededError, UserNotFoundError } from '../../errors/AuthError'; import { UsernameOrEmailNeededError } from '../../errors/UserErrors'; -import { JwtCreator } from '../../JwtCreator'; +import { JwtCreator } from '../../jwtcreator'; import { User } from '../entities/User'; import { Auth } from '../responses/ResponseAuth';