doc: permission doc typo fix
Signed-off-by: zeshanziya <zeshan.ziya@axelerant.com>
This commit is contained in:
@@ -86,8 +86,13 @@ To help validate the permission framework is setup we'll create a Test Permissio
|
||||
```ts title="packages/backend/src/index.ts"
|
||||
// permission plugin
|
||||
backend.add(import('@backstage/plugin-permission-backend/alpha'));
|
||||
/* highlight-remove-start */
|
||||
backend.add(
|
||||
import('@backstage/plugin-permission-backend-module-allow-all-policy'),
|
||||
);
|
||||
/* highlight-remove-end */
|
||||
/* highlight-add-next-line */
|
||||
backend.add(import('./extensions/permissionPolicyExtension'));
|
||||
backend.add(import('./extensions/permissionsPolicyExtension'));
|
||||
```
|
||||
|
||||
You now have a Test Permission Policy in place, this will help us test that the permission framework is working in the next section.
|
||||
|
||||
Reference in New Issue
Block a user