mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-12 22:26:08 -04: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';
|
} from '../errors/errors';
|
||||||
import { ConsoleLoggerService } from '../logger/console-logger.service';
|
import { ConsoleLoggerService } from '../logger/console-logger.service';
|
||||||
import { User } from '../users/user.entity';
|
import { User } from '../users/user.entity';
|
||||||
import { UsersService } from '../users/users.service';
|
|
||||||
import { bufferToBase64Url } from '../utils/password';
|
import { bufferToBase64Url } from '../utils/password';
|
||||||
import { TimestampMillis } from '../utils/timestamp';
|
import { TimestampMillis } from '../utils/timestamp';
|
||||||
import { AuthTokenDto, AuthTokenWithSecretDto } from './auth-token.dto';
|
import { AuthTokenDto, AuthTokenWithSecretDto } from './auth-token.dto';
|
||||||
|
@ -26,7 +25,6 @@ import { AuthToken } from './auth-token.entity';
|
||||||
export class AuthService {
|
export class AuthService {
|
||||||
constructor(
|
constructor(
|
||||||
private readonly logger: ConsoleLoggerService,
|
private readonly logger: ConsoleLoggerService,
|
||||||
private usersService: UsersService,
|
|
||||||
@InjectRepository(AuthToken)
|
@InjectRepository(AuthToken)
|
||||||
private authTokenRepository: Repository<AuthToken>,
|
private authTokenRepository: Repository<AuthToken>,
|
||||||
) {
|
) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue