Skip to content

Commit 1169e20

Browse files
unknownunknown
authored andcommitted
Fixing edit issues
1 parent cddfc70 commit 1169e20

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/api-management/api-management-howto-developer-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ $customRole.AssignableScopes.Add('/subscriptions/<subscription-id>')
189189
New-AzRoleDefinition -Role $customRole
190190
```
191191

192-
Once the role is created, it can be granted to any user from the **Access Control (IAM)** section in the Azure Portal. Assigning this role to a user will assign the permission at the service scope. The user will be able to generate SAS tokens on behalf of *any* user in the service. At the minimum, this role needs to be assigned to the administrator of the service. The following PowerShell command demonstrates how to assign the role to a user `user1` at the lowest scope to avoid granting unnecessary permissions to the user:
192+
Once the role is created, it can be granted to any user from the **Access Control (IAM)** section in the Azure portal. Assigning this role to a user will assign the permission at the service scope. The user will be able to generate SAS tokens on behalf of *any* user in the service. At the minimum, this role needs to be assigned to the administrator of the service. The following PowerShell command demonstrates how to assign the role to a user `user1` at the lowest scope to avoid granting unnecessary permissions to the user:
193193

194194
```PowerShell
195195
New-AzRoleAssignment -SignInName "[email protected]" -RoleDefinitionName "APIM New Portal Admin" -Scope "/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.ApiManagement/service/<apim-service-name>/users/1"

articles/api-management/api-management-howto-setup-delegation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ ms.author: apimpm
1818
---
1919
# How to delegate user registration and product subscription
2020

21-
Delegation allows you to use your existing website for handling developer sign in/sign up and subscription to products, as opposed to using the built-in functionality in the developer portal. This enables your website to own the user data and perform the validation of these steps in a custom way.
21+
Delegation allows you to use your existing website for handling developer sign in/sign up and subscription to products, as opposed to using the built-in functionality in the developer portal. It enables your website to own the user data and perform the validation of these steps in a custom way.
2222

2323
[!INCLUDE [premium-dev-standard-basic.md](../../includes/api-management-availability-premium-dev-standard-basic.md)]
2424

25-
## <a name="delegate-signin-up"> </a>Delegating developer sign in and sign up
25+
## <a name="delegate-signin-up"> </a>Delegating developer sign-in and sign-up
2626

27-
To delegate developer sign in and sign up to your existing website, you'll need to create a special delegation endpoint on your site. It needs to act as the entry-point for any such request initiated from the API Management developer portal.
27+
To delegate developer, sign in and sign up to your existing website, you'll need to create a special delegation endpoint on your site. It needs to act as the entry-point for any such request initiated from the API Management developer portal.
2828

2929
The final workflow will be as follows:
3030

0 commit comments

Comments
 (0)