Skip to content

Commit

Permalink
remove namespaces references
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkime committed May 20, 2022
1 parent 1b0bddf commit 74aeace
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,13 @@ export async function findRelationships({
client,
referenceTypes,
savedObjectsManagement,
namespaces,
}: {
type: string;
id: string;
size: number;
client: SavedObjectsClientContract;
referenceTypes: string[];
savedObjectsManagement: ISavedObjectsManagement;
namespaces?: string[];
}): Promise<SavedObjectGetRelationshipsResponse> {
const { references = [] } = await client.get(type, id);

Expand All @@ -49,8 +47,6 @@ export async function findRelationships({
hasReference: { type, id },
perPage: size,
type: referenceTypes,
// todo
namespaces,
}),
]);

Expand Down

0 comments on commit 74aeace

Please sign in to comment.