jumpserver/apps/assets/models/automations/account_verify.py

14 lines
334 B
Python
Raw Normal View History

2022-09-07 11:49:42 +00:00
from django.utils.translation import ugettext_lazy as _
from ops.const import StrategyChoice
2022-09-29 12:44:45 +00:00
from .base import BaseAutomation
2022-09-07 11:49:42 +00:00
2022-09-29 12:44:45 +00:00
class VerifyAutomation(BaseAutomation):
2022-09-07 11:49:42 +00:00
class Meta:
verbose_name = _("Verify strategy")
2022-10-14 10:59:28 +00:00
def save(self, *args, **kwargs):
self.type = 'verify'
super().save(*args, **kwargs)