forked from Ivasoft/mattermost-mobile
* Fix crash on Android when session expired notification is presented * react-native-notification patch for schedule fix on android and open local notification on iOS * Fix android scheduled session notification crash * patch react-native-navigation to support blur/focus AppState on Android * remove schedule session expired notification from login entry point * schedule session expired notification actions * add session manager * Handle open session expired notification
19 lines
378 B
TypeScript
19 lines
378 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const CATEGORY = 'CAN_REPLY';
|
|
|
|
export const REPLY_ACTION = 'REPLY_ACTION';
|
|
|
|
export const NOTIFICATION_TYPE = {
|
|
CLEAR: 'clear',
|
|
MESSAGE: 'message',
|
|
SESSION: 'session',
|
|
};
|
|
|
|
export default {
|
|
CATEGORY,
|
|
NOTIFICATION_TYPE,
|
|
REPLY_ACTION,
|
|
};
|