mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
refactor: removed unused userServices
Signed-off-by: Avinash <avinash.kumar.cs92@gmail.com>
This commit is contained in:
parent
ead9352392
commit
239e21f4cb
1 changed files with 0 additions and 2 deletions
|
@ -16,7 +16,6 @@ import {
|
|||
} from '../errors/errors';
|
||||
import { ConsoleLoggerService } from '../logger/console-logger.service';
|
||||
import { User } from '../users/user.entity';
|
||||
import { UsersService } from '../users/users.service';
|
||||
import { bufferToBase64Url } from '../utils/password';
|
||||
import { TimestampMillis } from '../utils/timestamp';
|
||||
import { AuthTokenDto, AuthTokenWithSecretDto } from './auth-token.dto';
|
||||
|
@ -26,7 +25,6 @@ import { AuthToken } from './auth-token.entity';
|
|||
export class AuthService {
|
||||
constructor(
|
||||
private readonly logger: ConsoleLoggerService,
|
||||
private usersService: UsersService,
|
||||
@InjectRepository(AuthToken)
|
||||
private authTokenRepository: Repository<AuthToken>,
|
||||
) {
|
||||
|
|
Loading…
Reference in a new issue