Skip to content

Commit f8801e0

Browse files
committed
refactor: 들여쓰기 정리
1 parent fe68599 commit f8801e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/services/user.service.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ export class UserService {
133133
const token = generateRandomToken(10);
134134
await this.userRepo.createQRLoginToken(token, userId, ip, userAgent);
135135
return token;
136-
}
136+
}
137137

138-
async getByToken(token: string): Promise<QRLoginToken | null> {
138+
async getByToken(token: string): Promise<QRLoginToken | null> {
139139
return await this.userRepo.findQRLoginToken(token);
140-
}
140+
}
141141

142-
async useToken(token: string): Promise<QRLoginToken | null> {
142+
async useToken(token: string): Promise<QRLoginToken | null> {
143143
const qrToken = await this.userRepo.findQRLoginToken(token);
144144

145145
if (!qrToken) {

0 commit comments

Comments
 (0)