e0615fa867
📁 Changed TDrive root folder
6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
import { ChannelType } from "./types";
|
|
|
|
export function isDirectChannel(channel: { workspace_id: string }): boolean {
|
|
return channel?.workspace_id === ChannelType.DIRECT;
|
|
}
|