1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-20 13:49:43 +02:00
planka/client/src/api/index.js

40 lines
986 B
JavaScript
Raw Normal View History

2019-08-31 04:07:25 +05:00
import http from './http';
import socket from './socket';
import accessTokens from './access-tokens';
import users from './users';
import projects from './projects';
import projectManagers from './project-managers';
2019-08-31 04:07:25 +05:00
import boards from './boards';
import boardMemberships from './board-memberships';
2019-08-31 04:07:25 +05:00
import labels from './labels';
import lists from './lists';
2019-08-31 04:07:25 +05:00
import cards from './cards';
import cardMemberships from './card-memberships';
import cardLabels from './card-labels';
import tasks from './tasks';
2020-04-21 05:04:34 +05:00
import attachments from './attachments';
2019-08-31 04:07:25 +05:00
import actions from './actions';
import commentActions from './comment-actions';
import notifications from './notifications';
export { http, socket };
export default {
...accessTokens,
...users,
...projects,
...projectManagers,
2019-08-31 04:07:25 +05:00
...boards,
...boardMemberships,
2019-08-31 04:07:25 +05:00
...labels,
...lists,
2019-08-31 04:07:25 +05:00
...cards,
...cardMemberships,
...cardLabels,
...tasks,
2020-04-21 05:04:34 +05:00
...attachments,
2019-08-31 04:07:25 +05:00
...actions,
...commentActions,
...notifications,
};