You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
planka_custom/client/src/selectors/index.js

28 lines
611 B
JavaScript

import router from './router';
import core from './core';
import modals from './modals';
import users from './users';
import projects from './projects';
import projectManagers from './project-managers';
import boards from './boards';
import boardMemberships from './board-memberships';
import lists from './lists';
import cards from './cards';
import tasks from './tasks';
import attachments from './attachments';
export default {
...router,
...core,
...modals,
...users,
...projects,
...projectManagers,
...boards,
...boardMemberships,
...lists,
...cards,
...tasks,
...attachments,
};