Deeplink support for graphql
Summary: This diff adds support for the deeplink of support form for graphql groups. Reviewed By: mweststrate Differential Revision: D19583680 fbshipit-source-id: fc4505dc5f46c701f1e43fc47ee094fb0aa15d42
This commit is contained in:
committed by
Facebook Github Bot
parent
e9dba5007a
commit
40ac443386
24
src/fb-stubs/utils/supportForm.tsx
Normal file
24
src/fb-stubs/utils/supportForm.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its 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 {Groups} from '../../reducers/supportForm';
|
||||
import {State as PluginStatesState} from '../../reducers/pluginStates';
|
||||
import {State as PluginMessageQueueState} from '../../reducers/pluginMessageQueue';
|
||||
import {State as PluginState} from '../../reducers/plugins';
|
||||
import Client from '../../Client';
|
||||
|
||||
export function defaultSelectedPluginsForGroup(
|
||||
_grp: Groups,
|
||||
_pluginStates: PluginStatesState,
|
||||
_pluginMessageQueue: PluginMessageQueueState,
|
||||
_plugins: PluginState,
|
||||
_selectedClient: Client | undefined,
|
||||
): Array<string> {
|
||||
return [];
|
||||
}
|
||||
Reference in New Issue
Block a user