frontend/src/models/teamShareBase.ts

25 lines
731 B
TypeScript
Raw Normal View History

2022-08-04 18:57:43 +00:00
import AbstractModel from './abstractModel'
2022-07-20 22:42:36 +00:00
2022-08-04 18:57:43 +00:00
import {RIGHTS, type Right} from '@/constants/rights'
import type {ITeamShareBase} from '@/modelTypes/ITeamShareBase'
import type {ITeam} from '@/modelTypes/ITeam'
/**
* 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 projects.
*/
2022-09-06 09:36:01 +00:00
export default class TeamShareBaseModel extends AbstractModel<ITeamShareBase> implements ITeamShareBase {
teamId: ITeam['id'] = 0
right: Right = RIGHTS.READ
2022-06-23 01:22:21 +00:00
created: Date = null
updated: Date = null
constructor(data: Partial<ITeamShareBase>) {
super()
this.assignData(data)
2022-06-23 01:22:21 +00:00
this.created = new Date(this.created)
this.updated = new Date(this.updated)
}
}