From d968774fb74a52b3f922e656398a877a1bc0d6b9 Mon Sep 17 00:00:00 2001 From: Christian Paul Date: Tue, 23 Sep 2025 17:49:27 +0200 Subject: [PATCH] Missing quotation marks: Fix JSON formatting in application-service-api.md (#2213) --- .../application_service/newsfragments/2213.clarification | 1 + content/application-service-api.md | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 changelogs/application_service/newsfragments/2213.clarification diff --git a/changelogs/application_service/newsfragments/2213.clarification b/changelogs/application_service/newsfragments/2213.clarification new file mode 100644 index 00000000..a8c06342 --- /dev/null +++ b/changelogs/application_service/newsfragments/2213.clarification @@ -0,0 +1 @@ +Fix JSON formatting in the "Server admin style permissions" examples. diff --git a/content/application-service-api.md b/content/application-service-api.md index 4c1ada48..46c3efca 100644 --- a/content/application-service-api.md +++ b/content/application-service-api.md @@ -438,8 +438,8 @@ user ID without a password. Content: { - type: "m.login.application_service", - username: "_irc_example" + "type": "m.login.application_service", + "username": "_irc_example" } Similarly, logging in as users needs API changes in order to allow the AS to @@ -454,7 +454,7 @@ log in without needing the user's password. This is achieved by including the Content: { - type: "m.login.application_service", + "type": "m.login.application_service", "identifier": { "type": "m.id.user", "user": "_irc_example"