Update org.md

Typo in this documentation

Signed-off-by: Ryan <42385438+ryan-WORK@users.noreply.github.com>
This commit is contained in:
Ryan
2024-06-14 12:23:38 -07:00
committed by GitHub
parent b6a544d265
commit 06273c0c3b
+3 -3
View File
@@ -301,11 +301,11 @@ map:
In case you want to customize the ingested entities, the provider allows to pass
transformers for users and groups.
Transformers can be configured by extending `ldapOrgEntityProviderTransformExtensionPoint`. Here is an example:
Transformers can be configured by extending `ldapOrgEntityProviderTransformsExtensionPoint`. Here is an example:
```ts title="packages/backend/src/index.ts"
import { createBackendModule } from '@backstage/backend-plugin-api';
import { ldapOrgEntityProviderTransformExtensionPoint } from '@backstage/plugin-catalog-backend-module-ldap';
import { ldapOrgEntityProviderTransformsExtensionPoint } from '@backstage/plugin-catalog-backend-module-ldap';
import { myUserTransformer, myGroupTransformer } from './transformers';
backend.add(
@@ -316,7 +316,7 @@ backend.add(
env.registerInit({
deps: {
/* highlight-add-start */
ldapTransformers: ldapOrgEntityProviderTransformExtensionPoint,
ldapTransformers: ldapOrgEntityProviderTransformsExtensionPoint,
/* highlight-add-end */
},
async init({ ldapTransformers }) {