Clean user backend

This commit is contained in:
Ategon 2025-02-09 17:18:54 -05:00
parent d9477e9eaf
commit c6ee544528
5 changed files with 11 additions and 9 deletions

View file

@ -42,8 +42,8 @@ export default function UserPage() {
const response = await fetch(
process.env.NEXT_PUBLIC_MODE === "PROD"
? "https://d2jam.com/api/v1/login"
: "http://localhost:3005/api/v1/login",
? "https://d2jam.com/api/v1/session"
: "http://localhost:3005/api/v1/session",
{
body: JSON.stringify({ username: username, password: password }),
method: "POST",

View file

@ -9,9 +9,9 @@ export default function UserPage() {
async function logout() {
const response = await fetch(
process.env.NEXT_PUBLIC_MODE === "PROD"
? "https://d2jam.com/api/v1/logout"
: "http://localhost:3005/api/v1/logout",
{ method: "POST", credentials: "include" }
? "https://d2jam.com/api/v1/session"
: "http://localhost:3005/api/v1/session",
{ method: "DELETE", credentials: "include" }
);
if (response.ok) {

View file

@ -91,12 +91,14 @@ export default function UserPage() {
bio: sanitizedBio,
profilePicture: profilePicture,
bannerPicture: bannerPicture,
targetUserSlug: user.slug,
}),
method: "PUT",
headers: {
"Content-Type": "application/json",
authorization: `Bearer ${getCookie("token")}`,
},
credentials: "include",
}
);

View file

@ -68,8 +68,8 @@ export default function UserPage() {
const response = await fetch(
process.env.NEXT_PUBLIC_MODE === "PROD"
? "https://d2jam.com/api/v1/signup"
: "http://localhost:3005/api/v1/signup",
? "https://d2jam.com/api/v1/user"
: "http://localhost:3005/api/v1/user",
{
body: JSON.stringify({ username: username, password: password }),
method: "POST",

View file

@ -14,8 +14,8 @@ export default function UserPage() {
const fetchUser = async () => {
const response = await fetch(
process.env.NEXT_PUBLIC_MODE === "PROD"
? `https://d2jam.com/api/v1/user?slug=${slug}`
: `http://localhost:3005/api/v1/user?slug=${slug}`
? `https://d2jam.com/api/v1/user?targetUserSlug=${slug}`
: `http://localhost:3005/api/v1/user?targetUserSlug=${slug}`
);
setUser(await response.json());
};