* Login screen for easy login * Deep link changes * Fix login flow * Address feedback * Rebranding * Add deactivated flow * Apply changes to the get type API * Address feedback
18 lines
506 B
TypeScript
18 lines
506 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const DeepLinkType = {
|
|
Channel: 'channel',
|
|
DirectMessage: 'dm',
|
|
GroupMessage: 'gm',
|
|
Invalid: 'invalid',
|
|
Permalink: 'permalink',
|
|
Playbooks: 'playbooks',
|
|
PlaybookRuns: 'playbook_runs',
|
|
PlaybookRunsRetrospective: 'playbook_runs_retrospective',
|
|
Redirect: '_redirect',
|
|
Server: 'server',
|
|
MagicLink: 'magic_link',
|
|
} as const;
|
|
|
|
export default DeepLinkType;
|