mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-04 11:03:39 +00:00
✅ Test 6 Pushers created with a different access token are deleted on password change
This commit is contained in:
parent
763354e371
commit
c5247d390f
1 changed files with 3 additions and 1 deletions
|
@ -59,7 +59,9 @@ func GetPushersByLocalpart(
|
|||
return jsonerror.InternalServerError()
|
||||
}
|
||||
|
||||
res := pushersJSON{}
|
||||
res := pushersJSON{
|
||||
Pushers: []pusherJSON{},
|
||||
}
|
||||
|
||||
for _, pusher := range queryRes.Pushers {
|
||||
res.Pushers = append(res.Pushers, pusherJSON{
|
||||
|
|
Loading…
Reference in a new issue