Fixed import for linux
continuous-integration/drone/pr Build is passing Details

ref #6
This commit is contained in:
Nicolai Ort 2020-12-18 22:49:01 +01:00
parent c3e3c6bed1
commit 631310f158
2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,6 @@ import { JwtCreator } from '../../jwtcreator';
import { User } from '../entities/User';
import { Auth } from '../responses/ResponseAuth';
export class CreateAuth {
@IsOptional()
@IsString()

View File

@ -3,7 +3,7 @@ import * as jsonwebtoken from 'jsonwebtoken';
import { getConnectionManager } from 'typeorm';
import { config } from '../../config';
import { IllegalJWTError, JwtNotProvidedError, RefreshTokenCountInvalidError, UserNotFoundError } from '../../errors/AuthError';
import { JwtCreator } from "../../JwtCreator";
import { JwtCreator } from "../../jwtcreator";
import { User } from '../entities/User';
import { Auth } from '../responses/ResponseAuth';