mattermost-mobile/app/constants/tutorial.ts
Mattermost Build bd89c7811c
Feature schedule posts (#8509) (#8775)
(cherry picked from commit f75c50ad2b)

Co-authored-by: Rajat Dabade <rajatdabade1997@gmail.com>
2025-04-15 08:04:39 +03:00

18 lines
597 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export const MULTI_SERVER = 'multiServerTutorial';
export const PROFILE_LONG_PRESS = 'profileLongPressTutorial';
export const EMOJI_SKIN_SELECTOR = 'emojiSkinSelectorTutorial';
export const DRAFTS = 'draftsTutorial';
export const SCHEDULED_POST = 'scheduledPostTutorial';
export const SCHEDULED_POSTS_LIST = 'scheduledPostsListTutorial';
export default {
MULTI_SERVER,
PROFILE_LONG_PRESS,
EMOJI_SKIN_SELECTOR,
DRAFTS,
SCHEDULED_POST,
SCHEDULED_POSTS_LIST,
};