Ausweis ohne Nutzer Referenz speichern

This commit is contained in:
Moritz Utcke
2024-03-13 09:52:18 +07:00
parent 39f4435386
commit df8fa9cce1
5 changed files with 69 additions and 46 deletions

View File

@@ -21,7 +21,7 @@ const ausweis = await caller.v1.verbrauchsausweisWohnen.get({
const user = await caller.v1.benutzer.self();
if (!ausweis || !user) {
if (!ausweis) {
return Astro.redirect("/404");
}
---