add market-page layouts, v1 for endpoints

This commit is contained in:
smanylov
2025-12-05 16:19:13 +07:00
parent 6a290832d6
commit fcb87c180c
13 changed files with 289 additions and 11 deletions
+3 -3
View File
@@ -12,7 +12,7 @@ export async function logout() {
const token = await getSessionData('token');
try {
await fetch(`${API_BASE_URL}/api/auth/logout`, {
await fetch(`${API_BASE_URL}v1/api/auth/logout`, {
method: 'POST',
headers: {
"Content-Type": "application/json",
@@ -43,7 +43,7 @@ export async function authorization(
try {
const { email, password } = validatedFields.data;
const response = await fetch(`${API_BASE_URL}/api/auth/login`, {
const response = await fetch(`${API_BASE_URL}v1/api/auth/login`, {
method: 'POST',
body: JSON.stringify({
email: email,
@@ -100,7 +100,7 @@ export async function registration(
try {
const { full_name, email, password } = validatedFields.data;
const response = await fetch(`${API_BASE_URL}/api/auth/register`, {
const response = await fetch(`${API_BASE_URL}v1/api/auth/register`, {
method: 'POST',
body: JSON.stringify({ fullName: full_name, email, password }),
headers: {