mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
Initial commit
This commit is contained in:
35
client/src/api/index.js
Executable file
35
client/src/api/index.js
Executable file
@@ -0,0 +1,35 @@
|
||||
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 lists from './lists';
|
||||
import labels from './labels';
|
||||
import cards from './cards';
|
||||
import cardMemberships from './card-memberships';
|
||||
import cardLabels from './card-labels';
|
||||
import tasks from './tasks';
|
||||
import actions from './actions';
|
||||
import commentActions from './comment-actions';
|
||||
import notifications from './notifications';
|
||||
|
||||
export { http, socket };
|
||||
|
||||
export default {
|
||||
...accessTokens,
|
||||
...users,
|
||||
...projects,
|
||||
...projectMemberships,
|
||||
...boards,
|
||||
...lists,
|
||||
...labels,
|
||||
...cards,
|
||||
...cardMemberships,
|
||||
...cardLabels,
|
||||
...tasks,
|
||||
...actions,
|
||||
...commentActions,
|
||||
...notifications,
|
||||
};
|
||||
Reference in New Issue
Block a user