F3.1: permitir consulta contextual desde Inventario

This commit is contained in:
2026-09-07 10:21:12 -03:00
parent dec8908bbe
commit 6102740647
@@ -7,7 +7,7 @@ export class InventoryFamilyCatalogController {
constructor(private readonly families: InventoryFamilyCatalogService) {}
@Get(':familyId/findings')
@RequirePermissions('assets.read', 'finding_catalog.read')
@RequirePermissions('assets.read')
findings(@Param('familyId', new ParseUUIDPipe({ version: '4' })) familyId: string) {
return this.families.findings(familyId);
}