mirror of https://github.com/zulip/zulip.git
sub_store: Add `is_archived` field to `Stream` type.
This commit is contained in:
parent
af7ebde9e4
commit
ca9ac293f3
|
@ -16,6 +16,7 @@ export const stream_schema = z.object({
|
||||||
history_public_to_subscribers: z.boolean(),
|
history_public_to_subscribers: z.boolean(),
|
||||||
invite_only: z.boolean(),
|
invite_only: z.boolean(),
|
||||||
is_announcement_only: z.boolean(),
|
is_announcement_only: z.boolean(),
|
||||||
|
is_archived: z.boolean(),
|
||||||
is_web_public: z.boolean(),
|
is_web_public: z.boolean(),
|
||||||
message_retention_days: z.number().nullable(),
|
message_retention_days: z.number().nullable(),
|
||||||
name: z.string(),
|
name: z.string(),
|
||||||
|
|
Loading…
Reference in New Issue