Skip to content

Commit

Permalink
Add correct argument propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihajlo-Pavlovic committed Dec 24, 2024
1 parent a7398d9 commit dda8c95
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/modules/triple-store/triple-store-module-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,18 @@ class TripleStoreModuleManager extends BaseModuleManager {
}
}

async getKnowledgeCollectionNamedGraphs(implementationName, repository, ual, visibility, sort) {
async getKnowledgeCollectionNamedGraphs(
implementationName,
repository,
ual,
tokenIds,
visibility,
sort,
) {
if (this.getImplementation(implementationName)) {
return this.getImplementation(
implementationName,
).module.getKnowledgeCollectionNamedGraphs(repository, ual, visibility, sort);
).module.getKnowledgeCollectionNamedGraphs(repository, tokenIds, ual, visibility, sort);
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/service/triple-store-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ class TripleStoreService {
repository,
// TODO: Add state with implemented update
`${ual}`,
knowledgeAssetId,
visibility,
);
} else {
Expand All @@ -399,6 +400,7 @@ class TripleStoreService {
this.repositoryImplementations[repository],
repository,
ual,
knowledgeAssetId,
visibility,
);
}
Expand Down

0 comments on commit dda8c95

Please sign in to comment.