habitica-self-host/website/client/store/actions/index.js

14 lines
361 B
JavaScript
Raw Normal View History

import { flattenAndNamespace } from 'client/libs/store/helpers/internals';
import * as user from './user';
import * as tasks from './tasks';
// Actions should be named as 'actionName' and can be accessed as 'namespace:actionName'
// Example: fetch in user.js -> 'user:fetch'
const actions = flattenAndNamespace({
2016-12-07 01:11:40 +00:00
user,
tasks,
});
2016-12-07 01:11:40 +00:00
export default actions;