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())