From 35b9940db45058c607ead89d210d51b4ae7a14ef Mon Sep 17 00:00:00 2001 From: FreddleSpl0it <75116288+FreddleSpl0it@users.noreply.github.com> Date: Tue, 19 Aug 2025 11:28:54 +0200 Subject: [PATCH] [Controller] Fix function description in SyncjobModel --- .../controller/mailcow-adm/models/SyncjobModel.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/Dockerfiles/controller/mailcow-adm/models/SyncjobModel.py b/data/Dockerfiles/controller/mailcow-adm/models/SyncjobModel.py index 5af9711f6..0c100f1c1 100644 --- a/data/Dockerfiles/controller/mailcow-adm/models/SyncjobModel.py +++ b/data/Dockerfiles/controller/mailcow-adm/models/SyncjobModel.py @@ -155,28 +155,28 @@ class SyncjobModel(BaseModel): def get(self): """ - Get the mailbox details from the mailcow API. + Get the sync job details from the mailcow API. :return: Response from the mailcow API. """ return self.mailcow.getSyncjob(self.username) def delete(self): """ - Get the mailbox details from the mailcow API. + Get the sync job details from the mailcow API. :return: Response from the mailcow API. """ return self.mailcow.deleteSyncjob(self.id) def add(self): """ - Get the mailbox details from the mailcow API. + Get the sync job details from the mailcow API. :return: Response from the mailcow API. """ return self.mailcow.addSyncjob(self.getAdd()) def edit(self): """ - Get the mailbox details from the mailcow API. + Get the sync job details from the mailcow API. :return: Response from the mailcow API. """ return self.mailcow.editSyncjob(self.id, self.getEdit())