Skip to content

Commit

Permalink
fixed merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed May 18, 2020
1 parent 3d828fd commit 0865068
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/encrypted_saved_objects/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export interface LegacyAPI {
*/
export class Plugin {
private readonly logger: Logger;
private savedObjectsSetup!: (includedHiddenTypes?: string[]) => SavedObjectsSetup;
private savedObjectsSetup!: SavedObjectsSetup;

private legacyAPI?: LegacyAPI;
private readonly getLegacyAPI = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function setupSavedObjects({
savedObjects,
security,
getStartServices,
}: SetupSavedObjectsParams): (includedHiddenTypes?: string[]) => SavedObjectsSetup {
}: SetupSavedObjectsParams): SavedObjectsSetup {
// Register custom saved object client that will encrypt, decrypt and strip saved object
// attributes where appropriate for any saved object repository request. We choose max possible
// priority for this wrapper to allow all other wrappers to set proper `namespace` for the Saved
Expand Down

0 comments on commit 0865068

Please sign in to comment.