mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
12 lines (9 loc) • 365 B
text/typescript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {ChannelCategoryType} from 'types/channel_categories';
export const CategoryTypes: {[name: string]: ChannelCategoryType} = {
FAVORITES: 'favorites',
CHANNELS: 'channels',
DIRECT_MESSAGES: 'direct_messages',
CUSTOM: 'custom',
};