Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-08-30 16:15:52 +02:00
Родитель d0ec78e78e
Коммит 6b6778129a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 0 добавлений и 15 удалений

Просмотреть файл

@ -141,27 +141,12 @@ const getters = {
}
return []
},
/**
* Gets the messages object
*
* @param {object} state the state object.
* @param {string} token the conversation token.
* @return {object} the messages object (if there are messages in the store)
*/
messages: (state) => (token) => {
if (state.messages[token]) {
return state.messages[token]
}
return {}
},
/**
* Gets a single message object
*
* @param {object} state the state object.
* @param {string} token the conversation token.
* @param {string} id the message id.
* @return {object} the message object (if the message is found in the store)
*/
message: (state) => (token, id) => {
if (state.messages[token][id]) {
return state.messages[token][id]