matrix-user-swap/tests/input/ignored_users_merge.json5
Olivia Lee b70039807b
add tests for m.ignored_user_list migration
None of this is hooked up yet.
2024-12-04 23:54:35 -08:00

25 lines
653 B
Text

// Migrating m.ignored_users_list, where the new user already has a
// m.ignored_users_list, containing some of the same users as the old user.
{
"rooms": { },
"old_user": {
"user_id": "@old:example.com",
"global_account_data": {
"m.ignored_user_list": {
"@user-a:example.com": {},
"@user-b:example.com": {}
}
}
},
"new_user": {
"user_id": "@new:example.com",
"global_account_data": {
"m.ignored_user_list": {
"@user-a:example.com": {},
"@user-c:example.com": {}
}
}
}
}