Files
flipper/desktop/flipper-ui-core/src/fb-stubs/constants.tsx
Andrey Goncharov 8768405e80 Use constants from flipper-frontend-core in flipper-ui-core
Summary: See D37139129

Reviewed By: lblasa

Differential Revision: D37238570

fbshipit-source-id: 5dbf6f179fc8957e074bad1e8f74e400644be049
2022-06-20 12:18:40 -07:00

36 lines
876 B
TypeScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
import {DeviceOS} from 'flipper-plugin';
import {frontendCoreConstants} from 'flipper-frontend-core';
export default Object.freeze({
...frontendCoreConstants,
// Enables the flipper data to be exported through shareabale link
ENABLE_SHAREABLE_LINK: false,
FEEDBACK_GROUP_LINK: 'https://github.com/facebook/flipper/issues',
// Workplace Group ID's
DEFAULT_SUPPORT_GROUP: {
name: 'Default Support Group',
workplaceGroupID: 0,
requiredPlugins: ['Inspector'],
defaultPlugins: ['DeviceLogs'],
supportedOS: ['Android'] as Array<DeviceOS>,
deeplinkSuffix: 'default',
papercuts: '',
},
SUPPORT_GROUPS: [],
INTERN_URL: '',
});