about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/push_notifications.js
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>2017-12-24 12:47:35 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-12-24 04:47:35 +0100
commit35fdf561be94200c7e7923ed11cde73b5b681314 (patch)
treef2c8044721025b574e192a449c56452560a05cc0 /app/javascript/mastodon/reducers/push_notifications.js
parent081956742cbcd6a51e48669fc5e3d21df0f879a7 (diff)
Refactor web_push_subscription (#6047)
* Remove onSave method in mapped properties for column_settings

* Make web_push_subscription.register an action
Diffstat (limited to 'app/javascript/mastodon/reducers/push_notifications.js')
-rw-r--r--app/javascript/mastodon/reducers/push_notifications.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/reducers/push_notifications.js b/app/javascript/mastodon/reducers/push_notifications.js
index 31a40d246..c15b38fe4 100644
--- a/app/javascript/mastodon/reducers/push_notifications.js
+++ b/app/javascript/mastodon/reducers/push_notifications.js
@@ -1,5 +1,5 @@
 import { STORE_HYDRATE } from '../actions/store';
-import { SET_BROWSER_SUPPORT, SET_SUBSCRIPTION, CLEAR_SUBSCRIPTION, ALERTS_CHANGE } from '../actions/push_notifications';
+import { SET_BROWSER_SUPPORT, SET_SUBSCRIPTION, CLEAR_SUBSCRIPTION, SET_ALERTS } from '../actions/push_notifications';
 import Immutable from 'immutable';
 
 const initialState = Immutable.Map({
@@ -43,7 +43,7 @@ export default function push_subscriptions(state = initialState, action) {
     return state.set('browserSupport', action.value);
   case CLEAR_SUBSCRIPTION:
     return initialState;
-  case ALERTS_CHANGE:
+  case SET_ALERTS:
     return state.setIn(action.key, action.value);
   default:
     return state;