From 696ebcd80843fdbd8d4b13104346e3cb58b93ccd Mon Sep 17 00:00:00 2001 From: Gidi Meir Morris Date: Tue, 21 Jan 2020 14:47:19 +0000 Subject: [PATCH] removed dep on security in actions --- x-pack/plugins/actions/kibana.json | 2 +- x-pack/plugins/actions/server/plugin.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/x-pack/plugins/actions/kibana.json b/x-pack/plugins/actions/kibana.json index 7cd1be3adcd4c..cb3da14630684 100644 --- a/x-pack/plugins/actions/kibana.json +++ b/x-pack/plugins/actions/kibana.json @@ -5,6 +5,6 @@ "kibanaVersion": "kibana", "configPath": ["xpack", "actions"], "requiredPlugins": ["licensing", "taskManager", "encryptedSavedObjects"], - "optionalPlugins": ["spaces", "security"], + "optionalPlugins": ["spaces"], "ui": false } diff --git a/x-pack/plugins/actions/server/plugin.ts b/x-pack/plugins/actions/server/plugin.ts index 08e5e88cdb852..af3954c59cba1 100644 --- a/x-pack/plugins/actions/server/plugin.ts +++ b/x-pack/plugins/actions/server/plugin.ts @@ -19,7 +19,6 @@ import { SavedObjectsServiceStart, } from '../../../../src/core/server'; -import { PluginSetupContract as SecurityPluginSetupContract } from '../../security/server'; import { PluginSetupContract as EncryptedSavedObjectsSetupContract, PluginStartContract as EncryptedSavedObjectsStartContract, @@ -59,7 +58,6 @@ export interface PluginStartContract { } export interface ActionsPluginsSetup { - security?: SecurityPluginSetupContract; taskManager: TaskManagerSetupContract; encryptedSavedObjects: EncryptedSavedObjectsSetupContract; licensing: LicensingPluginSetup;