Skip to content

Commit

Permalink
전화번호 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
overthestream committed May 31, 2024
1 parent bd4ef2b commit f862f57
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,11 @@ export class AuthService {
}

async sendCode(phoneNumber: string) {
if (phoneNumber === '01090319869' || phoneNumber === '01056210281') {
if (
phoneNumber === '01090319869' ||
phoneNumber === '01056210281' ||
phoneNumber === '01029053228'
) {
await this.authPhoneNumberRepository.insert(phoneNumber, '000000');
return;
}
Expand Down

0 comments on commit f862f57

Please sign in to comment.