This commit is contained in:
Mac mini
2026-03-31 10:35:38 +07:00
parent 0ba4d43518
commit 3412ba81cf
10 changed files with 414 additions and 96 deletions

4
api.ts
View File

@@ -2,9 +2,13 @@ export const API_URL_ROOT = process.env.NEXT_PUBLIC_API_URL_ROOT || "";
export const API = {
User : {
CURRENT: `${API_URL_ROOT}/users/current`
},
Auth : {
SIGNUP: `${API_URL_ROOT}/auth/signup`,
SIGNIN: `${API_URL_ROOT}/auth/signin`,
CREATEOTP: `${API_URL_ROOT}/auth/token/create`,
VERIFYOTP: `${API_URL_ROOT}/auth/token/verify`,
REFRESH: `${API_URL_ROOT}/auth/refresh`
}
}