207b1e91ca
* Added regsiter page and styles * Added style updates * Added login server connection and logout * Added login * Added social auth * Moved image assests * Added trasnlations * Added social icons * Removed duplicate * Updated shrinkwrap
27 lines
632 B
JavaScript
27 lines
632 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 party from './party';
|
|
import * as members from './members';
|
|
import * as auth from './auth';
|
|
import * as quests from './quests';
|
|
|
|
// 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,
|
|
party,
|
|
members,
|
|
auth,
|
|
quests,
|
|
});
|
|
|
|
export default actions;
|