habitica-self-host/website/client/store/actions/index.js
Matteo Pagliazzi dc8598ae81 Client: Guilds Discovery (#8529)
* wip: add guilds discovery page

* add public guilds page

* fix and add tests for the groups utilities mixin
2017-03-03 19:38:17 +01:00

16 lines
No EOL
392 B
JavaScript

import { flattenAndNamespace } from '../helpers/internals';
import * as user from './user';
import * as tasks from './tasks';
import * as guilds from './guilds';
// Actions should be named as 'actionName' and can be accessed as 'namespace:actionName'
// Example: fetch in user.js -> 'user:fetch'
const actions = flattenAndNamespace({
user,
tasks,
guilds,
});
export default actions;