lots more stuff

This commit is contained in:
2026-07-16 19:24:39 -07:00
parent a06f21a5c2
commit 228e2e99f7
22 changed files with 1605 additions and 405 deletions
+4 -2
View File
@@ -1,6 +1,7 @@
/**
* @typedef {Object} User
* @property {string} userId
* @property {string} name
* @property {string} rootObjectId
*/
@@ -8,9 +9,10 @@
* Create a User object.
*
* @param {string} userId
* @param {string} name
* @param {string} rootObjectId
* @returns {User}
*/
export function createUserModel(userId, rootObjectId) {
return { userId, rootObjectId };
export function createUserModel(userId, name, rootObjectId) {
return { userId, name, rootObjectId };
}