add constants for mobile notification settings

This commit is contained in:
Akinwale Ariwodola 2019-10-24 11:31:59 +01:00
parent 49c127ce9e
commit f25659a1f7
2 changed files with 13 additions and 1 deletions

10
dist/bundle.es.js vendored
View file

@ -577,6 +577,10 @@ const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions';
const RECEIVE_SUBSCRIPTION_NOTIFICATIONS = 'receiveSubscriptionNotifications';
const RECEIVE_REWARD_NOTIFICATIONS = 'receiveRewardNotifications';
const RECEIVE_INTERESTS_NOTIFICATIONS = 'receiveInterestsNotifications';
const RECEIVE_CREATOR_NOTIFICATIONS = 'receiveCreatorNotifications';
var settings = /*#__PURE__*/Object.freeze({
CREDIT_REQUIRED_ACKNOWLEDGED: CREDIT_REQUIRED_ACKNOWLEDGED,
@ -593,7 +597,11 @@ var settings = /*#__PURE__*/Object.freeze({
BACKGROUND_PLAY_ENABLED: BACKGROUND_PLAY_ENABLED,
FOREGROUND_NOTIFICATION_ENABLED: FOREGROUND_NOTIFICATION_ENABLED,
KEEP_DAEMON_RUNNING: KEEP_DAEMON_RUNNING,
SHOW_URI_BAR_SUGGESTIONS: SHOW_URI_BAR_SUGGESTIONS
SHOW_URI_BAR_SUGGESTIONS: SHOW_URI_BAR_SUGGESTIONS,
RECEIVE_SUBSCRIPTION_NOTIFICATIONS: RECEIVE_SUBSCRIPTION_NOTIFICATIONS,
RECEIVE_REWARD_NOTIFICATIONS: RECEIVE_REWARD_NOTIFICATIONS,
RECEIVE_INTERESTS_NOTIFICATIONS: RECEIVE_INTERESTS_NOTIFICATIONS,
RECEIVE_CREATOR_NOTIFICATIONS: RECEIVE_CREATOR_NOTIFICATIONS
});
const DATE_NEW = 'dateNew';

View file

@ -18,3 +18,7 @@ export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
export const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions';
export const RECEIVE_SUBSCRIPTION_NOTIFICATIONS = 'receiveSubscriptionNotifications';
export const RECEIVE_REWARD_NOTIFICATIONS = 'receiveRewardNotifications';
export const RECEIVE_INTERESTS_NOTIFICATIONS = 'receiveInterestsNotifications';
export const RECEIVE_CREATOR_NOTIFICATIONS = 'receiveCreatorNotifications';