Rename inbox() to mailbox() because we select any mailbox folder

This commit is contained in:
djmaze 2021-02-12 14:56:16 +01:00
parent 65e9deda2a
commit 997e0561ad
5 changed files with 11 additions and 21 deletions

View file

@ -149,7 +149,7 @@ export function themePreviewLink(theme) {
* @param {string} inboxFolderName = 'INBOX'
* @returns {string}
*/
export function inbox(inboxFolderName = 'INBOX') {
export function mailbox(inboxFolderName = 'INBOX') {
return HASH_PREFIX + 'mailbox/' + inboxFolderName;
}