Skip to content

Commit

Permalink
Addressing plugin type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-buttner committed Jun 7, 2021
1 parent 1f03026 commit 2a6738b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions x-pack/plugins/security_solution/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import {
PluginStartContract as AlertPluginStartContract,
} from '../../alerting/server';

import { PluginStartContract as CasesPluginStartContract } from '../../cases/server';
import {
ECS_COMPONENT_TEMPLATE_NAME,
TECHNICAL_COMPONENT_TEMPLATE_NAME,
Expand Down Expand Up @@ -119,6 +120,7 @@ export interface StartPlugins {
taskManager?: TaskManagerStartContract;
telemetry?: TelemetryPluginStart;
security: SecurityPluginStart;
cases?: CasesPluginStartContract;
}

// eslint-disable-next-line @typescript-eslint/no-empty-interface
Expand Down Expand Up @@ -528,6 +530,7 @@ export class Plugin implements IPlugin<PluginSetup, PluginStart, SetupPlugins, S
security: plugins.security,
alerting: plugins.alerting,
config: this.config!,
cases: plugins.cases,
logger,
manifestManager,
registerIngestCallback,
Expand Down

0 comments on commit 2a6738b

Please sign in to comment.