* Playbook run status update post * Show Playbooks button in Channel Info screen only if playbooks is enabled * Handle Playbook links * Fetch playbook if needed * fix playbooks migration * fix deeplinks using parsedUrl * update last time playbooks where fetched if no errors * show participants for run status update post * fix tests * remove console.log in test * feedback review * wrap participants footer * add fastlane FASTLANE_XCODEBUILD_SETTINGS_RETRIES env vars
16 lines
415 B
TypeScript
16 lines
415 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',
|
|
Redirect: '_redirect',
|
|
Server: 'server',
|
|
} as const;
|
|
|
|
export default DeepLinkType;
|