edit endpoint

This commit is contained in:
smanylov
2025-12-05 16:25:23 +07:00
parent fcb87c180c
commit c4538df07b
3 changed files with 39 additions and 5 deletions
+3 -3
View File
@@ -12,7 +12,7 @@ export async function logout() {
const token = await getSessionData('token');
try {
await fetch(`${API_BASE_URL}v1/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}v1/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}v1/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: {