Add an option to sort the room list by recents first

Fixes https://github.com/vector-im/riot-web/issues/8892
This commit is contained in:
Travis Ralston 2019-02-22 16:57:41 -07:00
parent 7ea4008daa
commit b0cc69bca9
4 changed files with 48 additions and 2 deletions

View file

@ -1,6 +1,6 @@
/*
Copyright 2017 Travis Ralston
Copyright 2018 New Vector Ltd
Copyright 2018, 2019 New Vector Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@ -340,4 +340,9 @@ export const SETTINGS = {
displayName: _td('Show developer tools'),
default: false,
},
"RoomList.orderByImportance": {
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
displayName: _td('Order rooms in the room list by most important first instead of most recent'),
default: true,
},
};