Tweak method name

Signed-off-by: Tim Hansen <timbonicus@gmail.com>
This commit is contained in:
Tim Hansen
2021-08-03 08:25:40 -06:00
parent 762520d1ba
commit 4a019712b4
4 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -134,7 +134,7 @@ export default async function createPlugin({
const ent = await externalSystemClient.getUsernames(email);
// Resolve group membership from the Backstage catalog
const fullEnt = await ctx.catalogIdentityClient.resolveCatalogMemberClaims({
const fullEnt = await ctx.catalogIdentityClient.resolveCatalogMembership({
sub,
ent,
logger: ctx.logger,
@@ -149,8 +149,8 @@ export default async function createPlugin({
...
```
The `resolveCatalogMemberClaims` method will retrieve the `sub` and `ent`
entities from the catalog, if possible, and check for
The `resolveCatalogMembership` method will retrieve the `sub` and `ent` entities
from the catalog, if possible, and check for
[memberOf](../features/software-catalog/well-known-relations.md#memberof-and-hasmember)
relations to add additional entity claims.