mattermost-mobile/app/constants/index.ts
Jason Frerich 137ba9d191
[Gekidou MM-39728] - Websocket Events - Channels (#6038)
* wip checkin

* wip checkin because my system is messed up again

* correct the add user and remove user from channel functions. THe user and channel ids sometimes come from the broudcast field, not the data object

* remove old comments

* remove old comments

* remove old comments

* add back in unarchive handler. handleChannelUpdateEvent will also update the deleteAt value for a channel, but does not get called when unarchive from the channel view, only through the system console.

* nit remove empty line

* wip

* wip

* remove handleChannelConvertedEvent

* remove handleChannelDirectAddedEvent

* wip

* wip

* wip

* Fix websockets events

* Address feedback

* Ensure categories and some refactoring

* Self review fixes

* Fix category creation bug

* Address feedback and minor improvements

* Address feedback

* Fix lint

Co-authored-by: Daniel Espino García <larkox@gmail.com>
2022-04-04 14:25:42 -04:00

60 lines
1.4 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import ActionType from './action_type';
import Apps from './apps';
import Categories from './categories';
import Channel from './channel';
import Config from './config';
import {CustomStatusDuration} from './custom_status';
import Database from './database';
import DeepLink from './deep_linking';
import Device from './device';
import Emoji from './emoji';
import Events from './events';
import Files from './files';
import General from './general';
import List from './list';
import Navigation from './navigation';
import Network from './network';
import Permissions from './permissions';
import Post from './post';
import PostDraft from './post_draft';
import Preferences from './preferences';
import Profile from './profile';
import Screens from './screens';
import ServerErrors from './server_errors';
import Sso from './sso';
import SupportedServer from './supported_server';
import View from './view';
import WebsocketEvents from './websocket';
export {
ActionType,
Apps,
Categories,
Config,
CustomStatusDuration,
Channel,
Database,
DeepLink,
Device,
Emoji,
Events,
Files,
General,
List,
Navigation,
Network,
Permissions,
Post,
PostDraft,
Preferences,
Profile,
Screens,
ServerErrors,
SupportedServer,
Sso,
View,
WebsocketEvents,
};