Skip to content

Commit

Permalink
Update packages/api/cms-api/src/user-permissions/content-scope.servic…
Browse files Browse the repository at this point in the history
…e.ts

Co-authored-by: Niko Sams <[email protected]>
  • Loading branch information
fraxachun and nsams authored Feb 7, 2025
1 parent 1594dbf commit d721e05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class ContentScopeService {
}

for (const id of ids) {
const row = await repo.findOneOrFail(id, { filters: false });
const row = await repo.findOneOrFail(id, { filters: false }); // disable all default filters, like eg. excludeDeleted
if (row.scope) {
contentScopes.push([row.scope as ContentScope]);
} else {
Expand Down

0 comments on commit d721e05

Please sign in to comment.