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

13 lines
345 B
JavaScript
Raw Normal View History

import { flattenAndNamespace } from '../helpers/internals';
import * as tasks from './tasks';
import * as user from './user';
// 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;