Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: data source permission client wrapper error of not returning explicitly the saved object client functions #8118

Merged
merged 4 commits into from
Sep 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: data source permission client wrapper error of not returning
explicitly the saved object client functions

Signed-off-by: Yulong Ruan <ruanyl@amazon.com>
ruanyl committed Sep 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 16d12757885f36f7a8095ba0bfdf3e0b232ad96b
Original file line number Diff line number Diff line change
@@ -148,6 +148,14 @@ export class DataSourcePermissionClientWrapper {
delete: deleteWithManageableBy,
update: updateWithManageableBy,
bulkUpdate: bulkUpdateWithManageableBy,
get: wrapperOptions.client.get,
checkConflicts: wrapperOptions.client.checkConflicts,
errors: wrapperOptions.client.errors,
addToNamespaces: wrapperOptions.client.addToNamespaces,
deleteFromNamespaces: wrapperOptions.client.deleteFromNamespaces,
find: wrapperOptions.client.find,
bulkGet: wrapperOptions.client.bulkGet,
deleteByWorkspace: wrapperOptions.client.deleteByWorkspace,
};
};