mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-04 13:09:41 +00:00
13 lines
No EOL
345 B
JavaScript
13 lines
No EOL
345 B
JavaScript
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({
|
|
user,
|
|
tasks,
|
|
});
|
|
|
|
export default actions; |