2019-10-28 22:45:37 +01:00
|
|
|
import AbstractModel from './abstractModel'
|
2020-02-08 14:16:06 +01:00
|
|
|
import UserModel from './user'
|
2019-10-28 22:45:37 +01:00
|
|
|
|
|
|
|
export default class TaskRelationModel extends AbstractModel {
|
|
|
|
constructor(data) {
|
|
|
|
super(data)
|
2020-04-12 23:54:46 +02:00
|
|
|
this.createdBy = new UserModel(this.createdBy)
|
2020-02-08 14:16:06 +01:00
|
|
|
this.created = new Date(this.created)
|
2019-10-28 22:45:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
defaults() {
|
|
|
|
return {
|
|
|
|
id: 0,
|
2020-04-12 23:54:46 +02:00
|
|
|
otherTaskId: 0,
|
|
|
|
taskId: 0,
|
|
|
|
relationKind: '',
|
2019-10-28 22:45:37 +01:00
|
|
|
|
2020-04-12 23:54:46 +02:00
|
|
|
createdBy: UserModel,
|
2020-02-08 14:16:06 +01:00
|
|
|
created: null,
|
2019-10-28 22:45:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|