You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/static-web-apps/authentication-authorization.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ Azure Static Web Apps streamlines the authentication experience by managing auth
21
21
22
22
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.
23
23
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
+
24
26
The topics of authentication and authorization significantly overlap with routing concepts. Make sure to read the [routing guide](routes.md) along with this article.
25
27
26
28
## Roles
@@ -96,6 +98,8 @@ As you remove a user, keep in mind the following items:
96
98
1. Worldwide propagation may take a few minutes.
97
99
1. If the user is added back to the app, the [`userId` changes](user-information.md).
98
100
101
+
## Remove personal identifying information
102
+
99
103
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.
100
104
101
105
End-users need to contact administrators of individual web apps to to revoke this information from their systems.
Copy file name to clipboardExpand all lines: articles/static-web-apps/github-actions-workflow.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -137,13 +137,9 @@ with:
137
137
138
138
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.
139
139
140
-
## Customizations
140
+
## Custom build commands
141
141
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.
147
143
148
144
The deployment always calls `npm install` before any custom command.
149
145
@@ -152,11 +148,15 @@ The deployment always calls `npm install` before any custom command.
152
148
| `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. |
153
149
| `api_build_command` | Defines a custom command to run during deployment of the Azure Functions API application. |
154
150
155
-
### Route file location
151
+
## Route file location
156
152
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. |
158
158
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.
0 commit comments