Add channel model property for shared channels (#5749)

This commit is contained in:
Elias Nahum
2021-10-13 14:28:09 -03:00
committed by GitHub
parent fcc6394502
commit ecd80fcd4f
8 changed files with 13 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ type Channel = {
status?: string;
fake?: boolean;
group_constrained: boolean|null;
shared: boolean|null;
shared: boolean;
};
type ChannelWithTeamData = Channel & {
team_display_name: string;