From a2764d4006fb635544a3242d1b563f529947f781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Nyr=C3=A9n?= <45558267+karlnyr@users.noreply.github.com> Date: Thu, 16 Jan 2025 13:01:25 +0100 Subject: [PATCH] feat: Add email report sending to MutantUploadAPI (#4100) ### Added - Email report sending to MutantUploadAPI upload command --- cg/meta/upload/mutant/mutant.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cg/meta/upload/mutant/mutant.py b/cg/meta/upload/mutant/mutant.py index a61398ebe1..17d3760279 100644 --- a/cg/meta/upload/mutant/mutant.py +++ b/cg/meta/upload/mutant/mutant.py @@ -24,4 +24,5 @@ def upload(self, ctx: Context, case: Case, restart: bool) -> None: self.gsaid_api.upload(case.internal_id) self.fohm_api.aggregate_delivery(case_ids=[case.internal_id]) self.fohm_api.sync_files_sftp() + self.fohm_api.send_mail_reports() self.update_uploaded_at(latest_analysis)