Skip to content

Commit

Permalink
fixed emrge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed Sep 16, 2020
1 parent 7bfbad5 commit 7780d0f
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 203 deletions.
6 changes: 3 additions & 3 deletions x-pack/plugins/actions/server/actions_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Boom from 'boom';
import {
ILegacyScopedClusterClient,
SavedObjectsClientContract,
SavedObjectAttributes,
SavedObject,
KibanaRequest,
Expand All @@ -30,7 +31,6 @@ import {
} from './create_execute_function';
import { ActionsAuthorization } from './authorization/actions_authorization';
import { ActionType } from '../common';
import { SavedObjectsClientWithoutUpdates } from './saved_objects';
import { shouldLegacyRbacApplyBySource } from './authorization/should_legacy_rbac_apply_by_source';

// We are assuming there won't be many actions. This is why we will load
Expand All @@ -56,7 +56,7 @@ interface ConstructorOptions {
defaultKibanaIndex: string;
scopedClusterClient: ILegacyScopedClusterClient;
actionTypeRegistry: ActionTypeRegistry;
unsecuredSavedObjectsClient: SavedObjectsClientWithoutUpdates;
unsecuredSavedObjectsClient: SavedObjectsClientContract;
preconfiguredActions: PreConfiguredAction[];
actionExecutor: ActionExecutorContract;
executionEnqueuer: ExecutionEnqueuer;
Expand All @@ -72,7 +72,7 @@ interface UpdateOptions {
export class ActionsClient {
private readonly defaultKibanaIndex: string;
private readonly scopedClusterClient: ILegacyScopedClusterClient;
private readonly unsecuredSavedObjectsClient: SavedObjectsClientWithoutUpdates;
private readonly unsecuredSavedObjectsClient: SavedObjectsClientContract;
private readonly actionTypeRegistry: ActionTypeRegistry;
private readonly preconfiguredActions: PreConfiguredAction[];
private readonly actionExecutor: ActionExecutorContract;
Expand Down
Loading

0 comments on commit 7780d0f

Please sign in to comment.