mattermost-mobile/app/constants/screens.ts

40 lines
1,019 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export const ABOUT = 'About';
export const APP_FORM = 'AppForm';
export const BOTTOM_SHEET = 'BottomSheet';
export const CHANNEL = 'Channel';
export const FORGOT_PASSWORD = 'ForgotPassword';
export const INTEGRATION_SELECTOR = 'IntegrationSelector';
export const HOME = 'Home';
export const LOGIN = 'Login';
export const LOGIN_OPTIONS = 'LoginOptions';
export const MAIN_SIDEBAR = 'MainSidebar';
export const MFA = 'MFA';
export const PERMALINK = 'Permalink';
export const SEARCH = 'Search';
export const SERVER = 'Server';
export const SETTINGS_SIDEBAR = 'SettingsSidebar';
export const SSO = 'SSO';
export const THREAD = 'Thread';
export default {
ABOUT,
APP_FORM,
BOTTOM_SHEET,
CHANNEL,
FORGOT_PASSWORD,
INTEGRATION_SELECTOR,
HOME,
LOGIN,
LOGIN_OPTIONS,
MAIN_SIDEBAR,
MFA,
PERMALINK,
SEARCH,
SERVER,
SETTINGS_SIDEBAR,
SSO,
THREAD,
};