add parameters

This commit is contained in:
Peter Maquiran
2023-08-20 00:26:24 +01:00
parent 8d35abbdd0
commit 6d8e0123b7
18 changed files with 193 additions and 77 deletions
+1
View File
@@ -23,6 +23,7 @@ export class MessageModel extends models.Model {
localReference = models.CharField({blank:true, unique: true})
attachments = ArrayField({blank:true})
file = JsonField({blank:true})
UploadAttachmentsTemp = models.IntegerField()
async getAttachments() {
console.log('this[id]', this['id'])
+1
View File
@@ -94,6 +94,7 @@ export interface Message {
fileBase64: string
}
hasFile: boolean
UploadAttachmentsTemp: number
}