fix: correct import path for catalogPermissionRules.ts

Update incorrect file path reference in catalogPermissionRules.ts import statement.

Signed-off-by: chonpisitkong01 <112919164+chonpisitkong01@users.noreply.github.com>
This commit is contained in:
chonpisitkong01
2025-09-12 17:30:14 +07:00
committed by GitHub
parent 9b2e16e858
commit 31ef3f023c
+1 -1
View File
@@ -184,7 +184,7 @@ To install custom rules in a plugin, we need to use the [`PermissionsRegistrySer
import('@backstage/plugin-catalog-backend-module-scaffolder-entity-model'),
);
/* highlight-add-next-line */
backend.add(import('./extensions/catalogPermissionRules'));
backend.add(import('./modules/catalogPermissionRules.ts'));
```
5. Now when you run you Backstage instance - `yarn start` - the rule will be added to the catalog plugin.