mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
31 lines
341 B
JavaScript
Executable file
31 lines
341 B
JavaScript
Executable file
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;
|