Fix: import stripe in docstring, set Stripe key in start_server.py, add missing DB columns, fix frontend API URLs

This commit is contained in:
2026-04-14 14:21:20 +02:00
parent 4417bb2a57
commit a9e82803a8
4 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export default function LoginPage() {
setError("")
try {
const res = await fetch("/autojobs/api/auth/login", {
const res = await fetch("/autojobs/api/users/login", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(form)
+1 -1
View File
@@ -39,7 +39,7 @@ function SignupForm() {
setError("")
try {
const res = await fetch("/autojobs/api/auth/signup", {
const res = await fetch("/autojobs/api/users", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({