1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Apply typos corrections from review

Co-authored-by: Will Lewis <1543626+wrjlewis@users.noreply.github.com>
This commit is contained in:
Quentin Gliech
2024-05-03 17:42:12 +02:00
parent 0c2305ad6f
commit f3b481f4ae
5 changed files with 13 additions and 13 deletions

View File

@ -157,7 +157,7 @@ clients:
client_auth_method: none
```
**Note:** any additions or modification in this list are synced with the database on server startup. Removed entries are only removed with the [`config sync --prune`](../reference/cli/config.md#config-sync---prune---dry-run) command.
**Note:** any additions or modifications in this list are synced with the database on server startup. Removed entries are only removed with the [`config sync --prune`](../reference/cli/config.md#config-sync---prune---dry-run) command.
## `secrets`
@ -410,7 +410,7 @@ upstream_oauth2:
# - `private_key_jwt` (using the keys defined in the `secrets.keys` section)
token_endpoint_auth_method: client_secret_post
# What signing algorithm to use to sign the authentication request when using
# Which signing algorithm to use to sign the authentication request when using
# the `private_key_jwt` or the `client_secret_jwt` authentication methods
#token_endpoint_auth_signing_alg: RS256
@ -498,7 +498,7 @@ upstream_oauth2:
## `experimental`
Settings that may change or be removed in future versions.
Some of those settings are in this section just because they don't have a stable place in the configuration yet.
Some of which are in this section because they don't have a stable place in the configuration yet.
```yaml
experimental:

View File

@ -2,11 +2,11 @@
MAS provides a GraphQL API which serves two purposes:
- it is used by the self-service user interface (usually accessible on `/account/`), for users to manage their own account
- it can be used with external tools to manage the service
- it is used by the self-service user interface (usually accessible on `/account/`), for users to manage their own account.
- it can be used with external tools to manage the service.
The endpoint for this API can be discovered through the OpenID Connect discovery document, under the `"org.matrix.matrix-authentication-service.graphql_endpoint` key.
It is though usually hosted at `https://<mas-host>/graphql`.
Though it is usually hosted at `https://<mas-host>/graphql`.
GraphQL uses [a self-describing schema](https://github.com/matrix-org/matrix-authentication-service/blob/main/frontend/schema.graphql), which means that the API can be explored in tools like the GraphQL Playground.
If enabled, MAS hosts an instance of the playground at `https://<mas-host>/graphql/playground`.