GH-4095 Favorite/Starred Channels (#4222)
Этот коммит содержится в:
коммит произвёл
Christopher Speller
родитель
66ed155a58
Коммит
b354d25d37
@@ -172,3 +172,17 @@ export function openDirectChannelToUser(user, success, error) {
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
export function markFavorite(channelId) {
|
||||
AsyncClient.savePreference(Preferences.CATEGORY_FAVORITE_CHANNEL, channelId, 'true');
|
||||
}
|
||||
|
||||
export function unmarkFavorite(channelId) {
|
||||
const pref = {
|
||||
user_id: UserStore.getCurrentId(),
|
||||
category: Preferences.CATEGORY_FAVORITE_CHANNEL,
|
||||
name: channelId
|
||||
};
|
||||
|
||||
AsyncClient.deletePreferences([pref]);
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user