fix zugangsPIN for existing Vorgang in upload page

This commit is contained in:
2025-08-21 12:35:24 +02:00
parent e966a1817c
commit a790bb0974
3 changed files with 4 additions and 4 deletions

View File

@@ -185,7 +185,7 @@
async function getVorgangPIN(vorgangName: string) {
if (vorgangName == '') return;
let url = `/api/list/${vorgangName}/vorgangPIN`;
let url = `/api/vorgang/${vorgangName}/vorgangPIN`;
const response = await fetch(url);
if (response.status == 200) {