3f20ae89a8
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/410 Co-authored-by: konrad <konrad@kola-entertainments.de> Co-committed-by: konrad <konrad@kola-entertainments.de>
20 lines
377 B
JavaScript
20 lines
377 B
JavaScript
import AbstractModel from '@/models/abstractModel'
|
|
import UserModel from '@/models/user'
|
|
|
|
export default class SubscriptionModel extends AbstractModel {
|
|
constructor(data) {
|
|
super(data)
|
|
this.user = new UserModel(this.user)
|
|
this.created = new Date(this.created)
|
|
}
|
|
|
|
defaults() {
|
|
return {
|
|
id: 0,
|
|
entity: '',
|
|
entityId: 0,
|
|
created: null,
|
|
user: {},
|
|
}
|
|
}
|
|
}
|