mattermost-mobile/app/constants/deep_linking.ts
Mattermost Build 01caefe0bc
MM-64960 ask users to fill Playbook run retrospective on web or desktop (#9044) (#9045)
(cherry picked from commit 1103ddb8f4)

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
2025-07-31 13:33:38 +03:00

17 lines
477 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',
} as const;
export default DeepLinkType;