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

28 lines
565 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';
2022-08-04 13:31:14 +02:00
import Activity from './Activity';
2019-08-31 04:07:25 +05:00
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,
2022-08-04 13:31:14 +02:00
Activity,
2020-04-21 05:04:34 +05:00
Notification,
};