* Further cleanup and fixes Tests clean-up Tests fixed? Plays nicely with threads Tests fixed Fixes ESR and show experimental flags Failing test fixed DM Fix WIP: Bottom bar UX Fixes for unreads Failing test Always show current channel Create a channel in a category! * Unreads on top * Various fixes * Improves category collapsing * Passes correct ID through * Tests cleanup * Redo unreads and unread-button * Reverts to just using ids * More unreads back to using ids * Uses appropriate selectors for pref updates * Unreads sorted by recency * Fixes test for recency * Fixes re-rendering bug * Code review updates, websocket event debounced
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const NotificationLevel = {
|
|
DEFAULT: 'default',
|
|
ALL: 'all',
|
|
MENTION: 'mention',
|
|
NONE: 'none',
|
|
};
|
|
|
|
export const MarkUnread = {
|
|
ALL: 'all',
|
|
MENTION: 'mention',
|
|
};
|