mirror of
https://github.com/plankanban/planka.git
synced 2025-12-25 09:15:00 +03:00
32 lines
341 B
JavaScript
32 lines
341 B
JavaScript
|
|
import { ORM } from 'redux-orm';
|
||
|
|
|
||
|
|
import {
|
||
|
|
Action,
|
||
|
|
Board,
|
||
|
|
Card,
|
||
|
|
Label,
|
||
|
|
List,
|
||
|
|
Notification,
|
||
|
|
Project,
|
||
|
|
ProjectMembership,
|
||
|
|
Task,
|
||
|
|
User,
|
||
|
|
} from './models';
|
||
|
|
|
||
|
|
const orm = new ORM();
|
||
|
|
|
||
|
|
orm.register(
|
||
|
|
User,
|
||
|
|
Project,
|
||
|
|
ProjectMembership,
|
||
|
|
Board,
|
||
|
|
List,
|
||
|
|
Label,
|
||
|
|
Card,
|
||
|
|
Task,
|
||
|
|
Action,
|
||
|
|
Notification,
|
||
|
|
);
|
||
|
|
|
||
|
|
export default orm;
|