2019-08-31 04:07:25 +05:00
|
|
|
import http from './http';
|
|
|
|
import socket from './socket';
|
2023-10-17 19:18:19 +02:00
|
|
|
import root from './root';
|
2019-08-31 04:07:25 +05:00
|
|
|
import accessTokens from './access-tokens';
|
|
|
|
import users from './users';
|
|
|
|
import projects from './projects';
|
2021-06-24 01:05:22 +05:00
|
|
|
import projectManagers from './project-managers';
|
2019-08-31 04:07:25 +05:00
|
|
|
import boards from './boards';
|
2021-06-24 01:05:22 +05:00
|
|
|
import boardMemberships from './board-memberships';
|
2019-08-31 04:07:25 +05:00
|
|
|
import labels from './labels';
|
2020-08-04 01:32:46 +05:00
|
|
|
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';
|
2022-08-04 13:31:14 +02:00
|
|
|
import activities from './activities';
|
|
|
|
import commentActivities from './comment-activities';
|
2019-08-31 04:07:25 +05:00
|
|
|
import notifications from './notifications';
|
|
|
|
|
|
|
|
export { http, socket };
|
|
|
|
|
|
|
|
export default {
|
2023-10-17 19:18:19 +02:00
|
|
|
...root,
|
2019-08-31 04:07:25 +05:00
|
|
|
...accessTokens,
|
|
|
|
...users,
|
|
|
|
...projects,
|
2021-06-24 01:05:22 +05:00
|
|
|
...projectManagers,
|
2019-08-31 04:07:25 +05:00
|
|
|
...boards,
|
2021-06-24 01:05:22 +05:00
|
|
|
...boardMemberships,
|
2019-08-31 04:07:25 +05:00
|
|
|
...labels,
|
2020-08-04 01:32:46 +05:00
|
|
|
...lists,
|
2019-08-31 04:07:25 +05:00
|
|
|
...cards,
|
|
|
|
...cardMemberships,
|
|
|
|
...cardLabels,
|
|
|
|
...tasks,
|
2020-04-21 05:04:34 +05:00
|
|
|
...attachments,
|
2022-08-04 13:31:14 +02:00
|
|
|
...activities,
|
|
|
|
...commentActivities,
|
2019-08-31 04:07:25 +05:00
|
|
|
...notifications,
|
|
|
|
};
|