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 projectMemberships from './project-memberships';
|
|
|
|
import boards from './boards';
|
|
|
|
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';
|
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,
|
|
|
|
...projectMemberships,
|
|
|
|
...boards,
|
|
|
|
...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,
|
2019-08-31 04:07:25 +05:00
|
|
|
...actions,
|
|
|
|
...commentActions,
|
|
|
|
...notifications,
|
|
|
|
};
|