1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 21:29:43 +02:00
planka/client/src/models/index.js

28 lines
559 B
JavaScript
Raw Normal View History

2019-08-31 04:07:25 +05:00
import User from './User';
import Project from './Project';
import ProjectManager from './ProjectManager';
2019-08-31 04:07:25 +05:00
import Board from './Board';
import BoardMembership from './BoardMembership';
2019-08-31 04:07:25 +05:00
import Label from './Label';
import List from './List';
2019-08-31 04:07:25 +05:00
import Card from './Card';
import Task from './Task';
2020-04-21 05:04:34 +05:00
import Attachment from './Attachment';
2019-08-31 04:07:25 +05:00
import Action from './Action';
import Notification from './Notification';
2020-04-21 05:04:34 +05:00
export {
User,
Project,
ProjectManager,
2020-04-21 05:04:34 +05:00
Board,
BoardMembership,
2020-04-21 05:04:34 +05:00
Label,
List,
2020-04-21 05:04:34 +05:00
Card,
Task,
Attachment,
Action,
Notification,
};