aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/actions.js
blob: 35cb83da625623ec26d8d342493c1874f414f63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var ActionTypes = {
    SETTINGS_UPDATE: "SETTINGS_UPDATE",
    EVENTLOG_ADD: "EVENTLOG_ADD"
};

var SettingsActions = {
    update: function (settings) {
        settings = _.merge({}, SettingsStore.getAll(), settings);
        //TODO: Update server.

        //Facebook Flux: We do an optimistic update on the client already.
        AppDispatcher.dispatchViewAction({
            actionType: ActionTypes.SETTINGS_UPDATE,
            settings: settings
        });
    }
};