Add OpenAPI fixture validation and fix fixtures to match API spec

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-22 23:58:17 +08:00
co-authored by Claude Opus 4.6
parent 56bee336db
commit 55986a1965
11 changed files with 5580 additions and 3398 deletions
@@ -63,6 +63,6 @@ const is_active = computed(() => currentViewingUser.value.is_active);
onBeforeMount(async () => {
await acctMgmtStore.getUserDetail(currentViewingUser.value.username);
visitTime.value = currentViewingUser.value.detail?.visits ?? 0;
visitTime.value = currentViewingUser.value.visits ?? 0;
});
</script>