mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
367 B
16 lines
367 B
2 years ago
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
2 years ago
|
from .base import BaseAutomation
|
||
2 years ago
|
|
||
|
|
||
2 years ago
|
class PushAccountAutomation(BaseAutomation):
|
||
2 years ago
|
class Meta:
|
||
2 years ago
|
verbose_name = _("Push automation")
|
||
2 years ago
|
|
||
|
def to_attr_json(self):
|
||
|
attr_json = super().to_attr_json()
|
||
|
attr_json.update({
|
||
2 years ago
|
'type': 'push_account'
|
||
2 years ago
|
})
|
||
|
return attr_json
|