* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
30 lines
852 B
TypeScript
30 lines
852 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import keyMirror from '@mm-redux/utils/key_mirror';
|
|
|
|
export default keyMirror({
|
|
TOTAL_USERS: null,
|
|
TOTAL_INACTIVE_USERS: null,
|
|
TOTAL_PUBLIC_CHANNELS: null,
|
|
TOTAL_PRIVATE_GROUPS: null,
|
|
TOTAL_POSTS: null,
|
|
TOTAL_TEAMS: null,
|
|
TOTAL_FILE_POSTS: null,
|
|
TOTAL_HASHTAG_POSTS: null,
|
|
TOTAL_IHOOKS: null,
|
|
TOTAL_OHOOKS: null,
|
|
TOTAL_COMMANDS: null,
|
|
TOTAL_SESSIONS: null,
|
|
POST_PER_DAY: null,
|
|
BOT_POST_PER_DAY: null,
|
|
USERS_WITH_POSTS_PER_DAY: null,
|
|
RECENTLY_ACTIVE_USERS: null,
|
|
NEWLY_CREATED_USERS: null,
|
|
TOTAL_WEBSOCKET_CONNECTIONS: null,
|
|
TOTAL_MASTER_DB_CONNECTIONS: null,
|
|
TOTAL_READ_DB_CONNECTIONS: null,
|
|
DAILY_ACTIVE_USERS: null,
|
|
MONTHLY_ACTIVE_USERS: null,
|
|
});
|
|
|