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.
planka_custom/client/src/models/index.js

28 lines
565 B
JavaScript

import User from './User';
import Project from './Project';
import ProjectManager from './ProjectManager';
import Board from './Board';
import BoardMembership from './BoardMembership';
import Label from './Label';
import List from './List';
import Card from './Card';
import Task from './Task';
import Attachment from './Attachment';
import Activity from './Activity';
import Notification from './Notification';
export {
User,
Project,
ProjectManager,
Board,
BoardMembership,
Label,
List,
Card,
Task,
Attachment,
Activity,
Notification,
};