Move instances of Client.leaveChannel() in components to an action (#5131)

* Move instances of Client.leaveChannel() in components to an action

* create isFavoriteChannelId
Этот коммит содержится в:
Carlos Tadeu Panato Junior
2017-01-20 15:45:22 +01:00
коммит произвёл Christopher Speller
родитель e8d7701b60
Коммит 6097f93704
4 изменённых файлов: 34 добавлений и 38 удалений

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

@@ -43,6 +43,10 @@ export function isFavoriteChannel(channel) {
return PreferenceStore.getBool(Preferences.CATEGORY_FAVORITE_CHANNEL, channel.id);
}
export function isFavoriteChannelId(channelId) {
return PreferenceStore.getBool(Preferences.CATEGORY_FAVORITE_CHANNEL, channelId);
}
export function isNotDeletedChannel(channel) {
return channel.delete_at === 0;
}