Skip to content

Commit 7e27538

Browse files
committed
feat: add subject display length to group setting schema
1 parent 919b402 commit 7e27538

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/schemas/src/group/group.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ export const $GroupSettings = z.object({
1212
en: z.string().nullish(),
1313
fr: z.string().nullish()
1414
})
15-
.nullish()
15+
.nullish(),
16+
subjectIdDisplayLength: z.number().nullish()
1617
});
1718

1819
export type GroupType = z.infer<typeof $GroupType>;

0 commit comments

Comments
 (0)