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.
40 lines
1004 B
JavaScript
40 lines
1004 B
JavaScript
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';
|
|
import boards from './boards';
|
|
import boardMemberships from './board-memberships';
|
|
import labels from './labels';
|
|
import lists from './lists';
|
|
import cards from './cards';
|
|
import cardMemberships from './card-memberships';
|
|
import cardLabels from './card-labels';
|
|
import tasks from './tasks';
|
|
import attachments from './attachments';
|
|
import activities from './activities';
|
|
import commentActivities from './comment-activities';
|
|
import notifications from './notifications';
|
|
|
|
export { http, socket };
|
|
|
|
export default {
|
|
...accessTokens,
|
|
...users,
|
|
...projects,
|
|
...projectManagers,
|
|
...boards,
|
|
...boardMemberships,
|
|
...labels,
|
|
...lists,
|
|
...cards,
|
|
...cardMemberships,
|
|
...cardLabels,
|
|
...tasks,
|
|
...attachments,
|
|
...activities,
|
|
...commentActivities,
|
|
...notifications,
|
|
};
|