mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 12:49:43 +02:00
60 lines
1.7 KiB
JavaScript
Executable file
60 lines
1.7 KiB
JavaScript
Executable file
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
import http from './http';
|
|
import socket from './socket';
|
|
import config from './config';
|
|
import accessTokens from './access-tokens';
|
|
import users from './users';
|
|
import projects from './projects';
|
|
import projectManagers from './project-managers';
|
|
import backgroundImages from './background-images';
|
|
import baseCustomFieldGroups from './base-custom-field-groups';
|
|
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 taskLists from './task-lists';
|
|
import tasks from './tasks';
|
|
import attachments from './attachments';
|
|
import customFieldGroups from './custom-field-groups';
|
|
import customFields from './custom-fields';
|
|
import customFieldValues from './custom-field-values';
|
|
import comments from './comments';
|
|
import activities from './activities';
|
|
import notifications from './notifications';
|
|
import notificationServices from './notification-services';
|
|
|
|
export { http, socket };
|
|
|
|
export default {
|
|
...config,
|
|
...accessTokens,
|
|
...users,
|
|
...projects,
|
|
...projectManagers,
|
|
...backgroundImages,
|
|
...baseCustomFieldGroups,
|
|
...boards,
|
|
...boardMemberships,
|
|
...labels,
|
|
...lists,
|
|
...cards,
|
|
...cardMemberships,
|
|
...cardLabels,
|
|
...taskLists,
|
|
...tasks,
|
|
...attachments,
|
|
...customFieldGroups,
|
|
...customFields,
|
|
...customFieldValues,
|
|
...comments,
|
|
...activities,
|
|
...notifications,
|
|
...notificationServices,
|
|
};
|