2019-03-02 11:25:10 +01:00
|
|
|
import AbstractModel from './abstractModel'
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class is a base class for common team sharing model.
|
|
|
|
* It is extended in a way so it can be used for namespaces as well for lists.
|
|
|
|
*/
|
|
|
|
export default class TeamShareBaseModel extends AbstractModel {
|
2020-02-08 14:16:06 +01:00
|
|
|
constructor(data) {
|
|
|
|
super(data)
|
|
|
|
this.created = new Date(this.created)
|
|
|
|
this.updated = new Date(this.updated)
|
|
|
|
}
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
defaults() {
|
|
|
|
return {
|
|
|
|
teamID: 0,
|
|
|
|
right: 0,
|
|
|
|
|
2020-02-08 14:16:06 +01:00
|
|
|
created: null,
|
|
|
|
updated: null
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|