frontend: Add user to global scope and make principal inputs dropdowns for collection creation

This commit is contained in:
Lennart
2025-07-05 10:04:42 +02:00
parent d8803a38a2
commit 4134ab0520
8 changed files with 40 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
interface Window {
rusticalUser: {
id: String,
displayname: String | null,
memberships: Array<String>,
principal_type: "individual" | "group" | "room" | String
}
}