* Fix Android and iOS flow * Own review * RN-138 Android notification preferences * Feedback review * Feedback review 2
10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
export default {
|
|
getPreferences: async () => null,
|
|
setNotificationSound: () => null,
|
|
setShouldVibrate: () => null,
|
|
setShouldBlink: () => null,
|
|
play: () => null
|
|
};
|