2019-03-02 11:25:10 +01:00
|
|
|
import AbstractModel from './abstractModel'
|
2022-06-23 03:22:21 +02:00
|
|
|
import type TeamModel from './team'
|
2022-06-23 03:14:58 +02:00
|
|
|
import {RIGHTS, type Right} from '@/models/constants/rights'
|
2019-03-02 11:25:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 {
|
2022-06-23 03:22:21 +02:00
|
|
|
teamId: TeamModel['id']
|
|
|
|
right: Right
|
|
|
|
|
|
|
|
created: Date
|
|
|
|
updated: Date
|
|
|
|
|
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 {
|
2020-04-12 23:54:46 +02:00
|
|
|
teamId: 0,
|
2022-06-23 03:14:58 +02:00
|
|
|
right: RIGHTS.READ,
|
2020-09-05 22:35:52 +02:00
|
|
|
|
2020-02-08 14:16:06 +01:00
|
|
|
created: null,
|
2020-09-05 22:35:52 +02:00
|
|
|
updated: null,
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|