UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

9 lines (8 loc) 369 B
//#region src/permissions/modules/process-ast/utils/collections-in-field-map.ts function collectionsInFieldMap(fieldMap) { const collections = /* @__PURE__ */ new Set(); for (const { collection } of [...fieldMap.other.values(), ...fieldMap.read.values()]) collections.add(collection); return Array.from(collections); } //#endregion export { collectionsInFieldMap };