Skip to content

Commit

Permalink
add new m.set_displayname, m.set_avatar_url, and m.3pid_changes
Browse files Browse the repository at this point in the history
… capabilities
  • Loading branch information
qwqtoday authored and neilalexander committed Oct 29, 2024
1 parent 9ee5462 commit 3ff2960
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions clientapi/routing/capabilities.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ func GetCapabilities(rsAPI roomserverAPI.ClientRoomserverAPI) util.JSONResponse
"default": rsAPI.DefaultRoomVersion(),
"available": versionsMap,
},
"m.set_displayname": map[string]bool{
"enabled": true,
},
"m.set_avatar_url": map[string]bool{
"enabled": true,
},
"m.3pid_changes": map[string]bool{
"enabled": true,
},
},
}

Expand Down

0 comments on commit 3ff2960

Please sign in to comment.