Skip to content

Commit

Permalink
added missing plugin type in alerting
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed May 19, 2020
1 parent fd44d7e commit c037724
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion x-pack/plugins/alerting/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
import { first, map } from 'rxjs/operators';
import { UsageCollectionSetup } from 'src/plugins/usage_collection/server';
import { SecurityPluginSetup } from '../../security/server';
import { EncryptedSavedObjectsPluginSetup } from '../../encrypted_saved_objects/server';
import {
EncryptedSavedObjectsPluginSetup,
EncryptedSavedObjectsPluginStart,
} from '../../encrypted_saved_objects/server';
import { TaskManagerSetupContract, TaskManagerStartContract } from '../../task_manager/server';
import { SpacesPluginSetup, SpacesServiceSetup } from '../../spaces/server';
import { AlertsClient } from './alerts_client';
Expand Down Expand Up @@ -86,6 +89,7 @@ export interface AlertingPluginsSetup {
export interface AlertingPluginsStart {
actions: ActionsPluginStartContract;
taskManager: TaskManagerStartContract;
encryptedSavedObjects: EncryptedSavedObjectsPluginStart;
}

export class AlertingPlugin {
Expand Down

0 comments on commit c037724

Please sign in to comment.