Skip to content

Commit

Permalink
Merge pull request #81 from KGU-C-Lab/refactor/#80
Browse files Browse the repository at this point in the history
refactor(auth): api versioning 대응 (#80)
  • Loading branch information
gwansikk authored Mar 26, 2024
2 parents 4d8b5cf + d796ceb commit 59846e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/auth/app/constants/api.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const API_BASE_URL = 'https://api.clab.page';
export const API_BASE_URL = 'https://api.clab.page/api';

export const END_POINTS = {
LOGIN: '/login',
TWO_FACTOR_LOGIN: '/login/authenticator',
LOGIN: '/v1/login',
TWO_FACTOR_LOGIN: '/v1/login/authenticator',
} as const;

export const SUCCESS_MESSAGE = {
Expand All @@ -11,7 +11,7 @@ export const SUCCESS_MESSAGE = {

export const ERROR_MESSAGE = {
AUTH: '인증에 실패했습니다.',
SERVER: '오류가 발생했습니다. 잠시 후 다시 시도해주세요.',
SERVER: '로그인에 실패했습니다. 입력 정보를 다시 확인해주세요.',
} as const;

// OAuth 백엔드가 개발 전까지 임시로 사용합니다
Expand Down

0 comments on commit 59846e7

Please sign in to comment.