diff options
Diffstat (limited to 'packages/trpc/models')
| -rw-r--r-- | packages/trpc/models/lists.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/trpc/models/lists.ts b/packages/trpc/models/lists.ts index 5c87a8bd..a6b1720c 100644 --- a/packages/trpc/models/lists.ts +++ b/packages/trpc/models/lists.ts @@ -65,6 +65,7 @@ export abstract class List implements PrivacyAware { .insert(bookmarkLists) .values({ name: input.name, + description: input.description, icon: input.icon, userId: ctx.user.id, parentId: input.parentId, @@ -121,6 +122,7 @@ export abstract class List implements PrivacyAware { .update(bookmarkLists) .set({ name: input.name, + description: input.description, icon: input.icon, parentId: input.parentId, query: input.query, |
