mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02: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;
|