Skip to content

Commit

Permalink
[backend] Fix export list disappears in knowledge (#5740)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelHassine committed Jan 29, 2024
1 parent 3e4c3c4 commit 510867e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const checkFileAccess = async (context: AuthContext, user: AuthUser, scop
// In progress virtual files from export
export const paginatedForPathWithEnrichment = async (context: AuthContext, user: AuthUser, path: string, entity_id: string, opts?: FilesOptions<BasicStoreEntityDocument>) => {
const findOpts: EntityOptions<BasicStoreEntityDocument> = {
filters: buildFileFilters([path], { ...opts, entity_id }),
filters: buildFileFilters([path], opts),
noFiltersChecking: true // No associated model
};
const orderOptions: any = {};
Expand Down

0 comments on commit 510867e

Please sign in to comment.