Private
Public Access
1
0

refacto: Deleting email mentions as there's no emailing system

This commit is contained in:
gauvainboiche
2026-03-31 16:54:11 +02:00
parent 42e68db00b
commit 7fa41ef7ac
6 changed files with 22 additions and 21 deletions

View File

@@ -42,11 +42,11 @@ export async function apiLogin(username, password) {
});
}
export async function apiRegister(username, email, password, team) {
export async function apiRegister(username, password, team) {
return fetch("/api/auth/register", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ username, email, password, team }),
body: JSON.stringify({ username, password, team }),
});
}