From 23758e7a91ddccef2b37b6b0c20b257de7681764 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Fri, 18 Dec 2020 22:42:48 +0100 Subject: [PATCH] Bugfix for bs file names ref #6 --- src/authchecker.ts | 2 +- src/models/actions/CreateAuth.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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';