2022-09-07 11:49:42 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
2022-10-28 10:28:41 +00:00
|
|
|
from assets.const import AutomationTypes
|
2022-09-29 12:44:45 +00:00
|
|
|
from .base import BaseAutomation
|
2022-09-07 11:49:42 +00:00
|
|
|
|
2022-10-28 10:28:41 +00:00
|
|
|
__all__ = ['PushAccountAutomation']
|
|
|
|
|
2022-09-07 11:49:42 +00:00
|
|
|
|
2022-10-19 03:39:11 +00:00
|
|
|
class PushAccountAutomation(BaseAutomation):
|
2022-10-28 10:28:41 +00:00
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
2022-11-04 11:18:15 +00:00
|
|
|
self.type = AutomationTypes.push_account
|
2022-10-28 10:28:41 +00:00
|
|
|
super().save(*args, **kwargs)
|
|
|
|
|
2022-09-07 11:49:42 +00:00
|
|
|
class Meta:
|
2022-10-28 10:28:41 +00:00
|
|
|
verbose_name = _("Push asset account")
|