Skip to content

Commit

Permalink
includes hidden params type in SO client
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed Jul 21, 2020
1 parent 407b09a commit 7bafd5d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion x-pack/plugins/actions/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,10 @@ export class ActionsPlugin implements Plugin<Promise<PluginSetupContract>, Plugi
encryptedSavedObjectsClient,
getBasePath: this.getBasePath,
spaceIdToNamespace: this.spaceIdToNamespace,
getScopedSavedObjectsClient: core.savedObjects.getScopedClient,
getScopedSavedObjectsClient: (request: KibanaRequest) =>
core.savedObjects.getScopedClient(request, {
includedHiddenTypes,
}),
});

scheduleActionsTelemetry(this.telemetryLogger, plugins.taskManager);
Expand Down

0 comments on commit 7bafd5d

Please sign in to comment.