Files
planka/client/src/models/index.js
Maksim Eltyshev 2ee1166747 feat: Version 2
Closes #627, closes #1047
2025-05-10 02:09:06 +02:00

49 lines
1.2 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 User from './User';
import Project from './Project';
import ProjectManager from './ProjectManager';
import BackgroundImage from './BackgroundImage';
import BaseCustomFieldGroup from './BaseCustomFieldGroup';
import Board from './Board';
import BoardMembership from './BoardMembership';
import Label from './Label';
import List from './List';
import Card from './Card';
import TaskList from './TaskList';
import Task from './Task';
import Attachment from './Attachment';
import CustomFieldGroup from './CustomFieldGroup';
import CustomField from './CustomField';
import CustomFieldValue from './CustomFieldValue';
import Comment from './Comment';
import Activity from './Activity';
import Notification from './Notification';
import NotificationService from './NotificationService';
export {
User,
Project,
ProjectManager,
BackgroundImage,
BaseCustomFieldGroup,
Board,
BoardMembership,
Label,
List,
Card,
TaskList,
Task,
Attachment,
CustomFieldGroup,
CustomField,
CustomFieldValue,
Comment,
Activity,
Notification,
NotificationService,
};