* MM-41854 Detox/E2E: Setup detox infrastructure in Gekidou * Fix lint issues * Fix lint issues * Update API to include baseUrl for multiple servers * Update init.js to have default siteUrl as baseUrl * Update init.js to have default siteUrl as baseUrl * Update import of testConfig * Update import of testConfig * Update postMessageAs signature * Update detox/webhook_server.js Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com> Co-authored-by: Mattermod <mattermod@users.noreply.github.com> Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com>
28 lines
578 B
JavaScript
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,
|
|
};
|