Move authentication to postgres

This commit is contained in:
2025-02-14 09:10:15 -05:00
parent f29dd8ef8b
commit a519746ccb
9 changed files with 1009 additions and 503 deletions

View File

@@ -22,7 +22,7 @@ export function Login() {
setIsLoading(true);
try {
const url = isDev ? "/auth-inv/login" : `${config.authUrl}/login`;
const url = `${config.authUrl}/login`;
console.log("Making login request:", {
url,
method: "POST",