* Add GM as DM feature support * Minor fix * Address feedback * Fix case for non set channel notify prop * Fix strings
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const ALL = 'all' as const;
|
|
export const DEFAULT = 'default' as const;
|
|
export const MENTION = 'mention' as const;
|
|
export const NONE = 'none' as const;
|
|
|
|
export default {
|
|
ALL,
|
|
DEFAULT,
|
|
MENTION,
|
|
NONE,
|
|
};
|