forked from Ivasoft/mattermost-mobile
* Fix Android and iOS flow * Own review * RN-138 Android notification preferences * Feedback review * Feedback review 2
15 lines
531 B
JavaScript
15 lines
531 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {NativeModules} from 'react-native';
|
|
|
|
const {NotificationPreferences} = NativeModules;
|
|
|
|
export default {
|
|
getPreferences: NotificationPreferences.getPreferences,
|
|
setNotificationSound: NotificationPreferences.setNotificationSound,
|
|
setShouldVibrate: NotificationPreferences.setShouldVibrate,
|
|
setShouldBlink: NotificationPreferences.setShouldBlink,
|
|
play: NotificationPreferences.previewSound
|
|
};
|