Add properties to update compliance permission access

This commit is contained in:
Eli Ribble 2026-04-13 15:15:33 +00:00
parent 0297114faf
commit 756cc0d266
No known key found for this signature in database
3 changed files with 197 additions and 187 deletions

View file

@ -134,7 +134,14 @@ function doPermission() {
console.log("can't do permission, null report");
return;
}
console.log("permission", report.value);
console.log("report.value.has_dog", report.value.has_dog);
updateReport({
access: report.value.access,
access_instructions: report.value.access_instructions,
gate_code: report.value.gate_code,
has_dog: report.value.has_dog,
wants_scheduled: report.value.wants_scheduled,
});
}
async function fetchExistingReport(report_uri: string) {
isLoading.value = true;