This commit is contained in:
tiago.kayaya
2021-08-06 17:19:48 +01:00
parent 08c5a959d5
commit 23cfbc2b2a
3 changed files with 55 additions and 22 deletions
+9
View File
@@ -88,4 +88,13 @@ export class AttachmentsService {
return this.http.delete(`${geturl}`, options);
}
AddAttachment(body: any) {
let geturl = environment.apiURL + 'Attachments/CreateAttachmentProcess';
let options = {
headers: this.headers,
}
return this.http.post(`${geturl}`, body, options);
}
}