This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/models/attachment.ts

26 lines
741 B
TypeScript
Raw Permalink Normal View History

2022-08-04 18:57:43 +00:00
import AbstractModel from './abstractModel'
import UserModel from './user'
import FileModel from './file'
import type { IUser } from '@/modelTypes/IUser'
import type { IFile } from '@/modelTypes/IFile'
import type { IAttachment } from '@/modelTypes/IAttachment'
2022-07-20 22:42:36 +00:00
export const SUPPORTED_IMAGE_SUFFIX = ['.jpg', '.png', '.bmp', '.gif']
2022-09-06 09:36:01 +00:00
export default class AttachmentModel extends AbstractModel<IAttachment> implements IAttachment {
id = 0
taskId = 0
createdBy: IUser = UserModel
file: IFile = FileModel
created: Date = null
constructor(data: Partial<IAttachment>) {
super()
this.assignData(data)
2022-06-23 01:22:21 +00:00
this.createdBy = new UserModel(this.createdBy)
2019-11-24 13:16:24 +00:00
this.file = new FileModel(this.file)
this.created = new Date(this.created)
2019-11-24 13:16:24 +00:00
}
}