chore(deps): sync upstream changes (2026-08-26) #5

Merged
imnyang merged 27 commits from upstream-sync-202608261421 into dev 2026-08-26 14:37:20 +09:00
Showing only changes of commit a9245c8f46 - Show all commits

fix: update device management endpoint (#3022)

When we added the endpoints were session but they got updated when the MSC is merged into spec.
Ref: https://github.com/matrix-org/matrix-spec-proposals/pull/4191#discussion_r2376900233
Krishan 2026-07-19 22:26:09 +10:00 committed by GitHub
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,9 +4,9 @@ export const useAccountManagementActions = () => {
const actions = useMemo(
() => ({
profile: 'org.matrix.profile',
sessionsList: 'org.matrix.sessions_list',
sessionView: 'org.matrix.session_view',
sessionEnd: 'org.matrix.session_end',
sessionsList: 'org.matrix.devices_list',
sessionView: 'org.matrix.device_view',
sessionEnd: 'org.matrix.device_delete',
accountDeactivate: 'org.matrix.account_deactivate',
crossSigningReset: 'org.matrix.cross_signing_reset',
}),