Add identifier when authorizing with password

This PR is almost copy of https://github.com/Awesome-Technologies/synapse-admin/pull/601 PR,
authored by @dklimpel
This commit is contained in:
Aine 2024-09-03 10:40:27 +03:00
parent 678867e981
commit 7747dc7f28
No known key found for this signature in database
GPG key ID: 34969C908CCA2804
4 changed files with 7 additions and 3 deletions

View file

@ -4,7 +4,7 @@ on:
branches: [ "main" ]
env:
upstream_version: v0.10.3
etke_version: etke2
etke_version: etke3
bunny_version: v0.1.0
permissions:
checks: write

View file

@ -25,6 +25,7 @@ The following changes are already implemented:
* [Prevent admins from deleting themselves](https://github.com/etkecc/synapse-admin/pull/1)
* [Fix user's default tab not being shown](https://github.com/etkecc/synapse-admin/pull/8)
* [Add identifier when authorizing with password](https://github.com/Awesome-Technologies/synapse-admin/pull/601)
_the list will be updated as new changes are added_

View file

@ -30,7 +30,7 @@ describe("authProvider", () => {
expect(ret).toBe(undefined);
expect(fetch).toBeCalledWith("http://example.com/_matrix/client/r0/login", {
body: '{"device_id":null,"initial_device_display_name":"Synapse Admin","type":"m.login.password","user":"@user:example.com","password":"secret"}',
body: '{"device_id":null,"initial_device_display_name":"Synapse Admin","type":"m.login.password","identifier":{"type":"m.id.user","user":"@user:example.com"},"password":"secret"}',
headers: new Headers({
Accept: "application/json",
"Content-Type": "application/json",

View file

@ -31,7 +31,10 @@ const authProvider: AuthProvider = {
}
: {
type: "m.login.password",
user: username,
identifier: {
type: "m.id.user",
user: username,
},
password: password,
}
)