mattermost-mobile/detox/e2e/support/server_api/index.js
Joseph Baylon 8c8348ea0b
MM-35681 Detox/E2E: Add e2e for bot account, mention badges, at mention (#5539)
* MM-35681 Detox/E2E: Add e2e for bot account, mention badges, at mention

* Fix return for apiUpdateUserActiveStatus

* Fix param comment for apiCreateBot

* Move it blocks to the top
2021-07-15 09:10:08 -07:00

28 lines
578 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Bot from './bot';
import Channel from './channel';
import Ldap from './ldap';
import Plugin from './plugin';
import Post from './post';
import Preference from './preference';
import Setup from './setup';
import Status from './status';
import System from './system';
import Team from './team';
import User from './user';
export {
Bot,
Channel,
Ldap,
Plugin,
Post,
Preference,
Setup,
Status,
System,
Team,
User,
};