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:
Pritesh Nandgaonkar
2020-01-28 09:27:16 -08:00
committed by Facebook Github Bot
parent e9dba5007a
commit 40ac443386
2 changed files with 92 additions and 10 deletions

View 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 [];
}