Skip to content

Commit cf8b367

Browse files
authored
Merge pull request #114557 from craigshoemaker/marm-clean-up
Update drafts
2 parents a0f49aa + ab1ded8 commit cf8b367

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

articles/static-web-apps/authentication-authorization.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Azure Static Web Apps streamlines the authentication experience by managing auth
2121

2222
Provider-specific [invitations](#invitations) associate users with roles, and authorized users are granted access to [routes](routes.md) by rules defined in the _routes.json_ file.
2323

24+
All authentication providers are enabled by default. To restrict an authentication provider, [block access](#block-an-authorization-provider) with a custom route rule.
25+
2426
The topics of authentication and authorization significantly overlap with routing concepts. Make sure to read the [routing guide](routes.md) along with this article.
2527

2628
## Roles
@@ -96,6 +98,8 @@ As you remove a user, keep in mind the following items:
9698
1. Worldwide propagation may take a few minutes.
9799
1. If the user is added back to the app, the [`userId` changes](user-information.md).
98100

101+
## Remove personal identifying information
102+
99103
When you grant consent to an application as an end-user, the application has access to your email address or your username depending on the identity provider. Once this information is provided, the owner of the application decides how to manage personally identifying information.
100104

101105
End-users need to contact administrators of individual web apps to to revoke this information from their systems.

articles/static-web-apps/github-actions-workflow.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,9 @@ with:
137137

138138
The `repo_token`, `action`, and `azure_static_web_apps_api_token` values are set for you by Azure Static Web Apps shouldn't be manually changed.
139139

140-
## Customizations
140+
## Custom build commands
141141

142-
There are few additional configuration settings available that are not generated in the workflow file by default. The following customizations can be defined under a job's `with` section.
143-
144-
### Custom build commands
145-
146-
You can have fine-grained control over what commands run during a deployment.
142+
You can have fine-grained control over what commands run during a deployment. The following commands can be defined under a job's `with` section.
147143

148144
The deployment always calls `npm install` before any custom command.
149145

@@ -152,11 +148,15 @@ The deployment always calls `npm install` before any custom command.
152148
| `app_build_command` | Defines a custom command to run during deployment of the static content application.<br><br>For example, to configure a production build for an Angular application enter `ng build -prod`. If left blank, the workflow tries to run the `build` or `build:Azure` commands. |
153149
| `api_build_command` | Defines a custom command to run during deployment of the Azure Functions API application. |
154150

155-
### Route file location
151+
## Route file location
156152

157-
You can customize the workflow to look for the [routes.json](routes.md) in any folder in your repository. The `routes_location` property defines the directory location where the _routes.json_ file is found. This location is relative to the root of the repository.
153+
You can customize the workflow to look for the [routes.json](routes.md) in any folder in your repository. The following property can be defined under a job's `with` section.
154+
155+
| Property | Description |
156+
|---------------------|-------------|
157+
| `routes_location` | Defines the directory location where the _routes.json_ file is found. This location is relative to the root of the repository. |
158158

159-
Being explicit about the location of your _routes.json_ file is particularly important if your front-end framework build step does not move this file to the `app_artifact_location` by default.
159+
Being explicit about the location of your _routes.json_ file is particularly important if your front-end framework build step does not move this file to the `app_artifact_location` by default.
160160

161161
## Next steps
162162

0 commit comments

Comments
 (0)