Skip to content

Commit

Permalink
feat: update param name to match CDI
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Sep 13, 2023
1 parent f723447 commit 67efb36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/build/recipe/multitenancy/recipeImplementation.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function getRecipeInterface(querier) {
}/recipe/multitenancy/tenant/user`
),
{
userId: recipeUserId.getAsString(), // TODO: update CDI
recipeUserId: recipeUserId.getAsString(),
}
);
return response;
Expand All @@ -95,7 +95,7 @@ function getRecipeInterface(querier) {
}/recipe/multitenancy/tenant/user/remove`
),
{
userId: recipeUserId.getAsString(), // TODO: update CDI
recipeUserId: recipeUserId.getAsString(),
}
);
return response;
Expand Down
4 changes: 2 additions & 2 deletions lib/ts/recipe/multitenancy/recipeImplementation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function getRecipeInterface(querier: Querier): RecipeInterface {
`/${tenantId === undefined ? DEFAULT_TENANT_ID : tenantId}/recipe/multitenancy/tenant/user`
),
{
userId: recipeUserId.getAsString(), // TODO: update CDI
recipeUserId: recipeUserId.getAsString(),
}
);
return response;
Expand All @@ -91,7 +91,7 @@ export default function getRecipeInterface(querier: Querier): RecipeInterface {
`/${tenantId === undefined ? DEFAULT_TENANT_ID : tenantId}/recipe/multitenancy/tenant/user/remove`
),
{
userId: recipeUserId.getAsString(), // TODO: update CDI
recipeUserId: recipeUserId.getAsString(),
}
);
return response;
Expand Down

0 comments on commit 67efb36

Please sign in to comment.