mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-04 04:59:40 +00:00
* Began styling member modal * Added store and updated modal styles * Began converting angular * Ported over angular routes * Fixed lint issues
20 lines
503 B
JavaScript
20 lines
503 B
JavaScript
import { flattenAndNamespace } from 'client/libs/store/helpers/internals';
|
|
|
|
import * as common from './common';
|
|
import * as user from './user';
|
|
import * as tasks from './tasks';
|
|
import * as guilds from './guilds';
|
|
import * as members from './members';
|
|
|
|
// Actions should be named as 'actionName' and can be accessed as 'namespace:actionName'
|
|
// Example: fetch in user.js -> 'user:fetch'
|
|
|
|
const actions = flattenAndNamespace({
|
|
common,
|
|
user,
|
|
tasks,
|
|
guilds,
|
|
members,
|
|
});
|
|
|
|
export default actions;
|