Skip to content

Commit 7a607a7

Browse files
committed
fix: cleanup
1 parent d043498 commit 7a607a7

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/auth/auth.controller.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,8 @@ import { ApiOkResponse, ApiOperation, ApiTags } from '@nestjs/swagger';
1515

1616
import { JwtPayload } from 'src/auth';
1717
import { CaptchaService } from 'src/captcha';
18-
import { EmailRecordService } from 'src/email/email-record.service';
19-
import { GroupService } from 'src/group';
2018
import { addShortTimeSpan } from 'src/lib/lang/time';
21-
import { NamespaceService } from 'src/namespace';
2219
import { CreateSessionDto, ErrorCodes as SessionErrorCodes, SessionService } from 'src/session';
23-
import { SmsRecordService } from 'src/sms';
2420
import { ThirdPartySource } from 'src/third-party';
2521
import { User, UserDocument, ErrorCodes as UserErrorCodes, UserService } from 'src/user';
2622

@@ -42,12 +38,8 @@ export class AuthController {
4238
constructor(
4339
private readonly sessionService: SessionService,
4440
private readonly userService: UserService,
45-
private readonly namespaceService: NamespaceService,
46-
private readonly groupService: GroupService,
4741
private readonly jwtService: JwtService,
4842
private readonly captchaService: CaptchaService,
49-
private readonly emailRecordService: EmailRecordService,
50-
private readonly smsRecordService: SmsRecordService,
5143
private readonly authService: AuthService
5244
) {}
5345

0 commit comments

Comments
 (0)