mirror of https://github.com/jumpserver/jumpserver
11 lines
274 B
Python
11 lines
274 B
Python
![]() |
from django.db import models
|
||
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
||
|
from .base import UserBaseACL
|
||
|
|
||
|
__all__ = ['ConnectMethodACL']
|
||
|
|
||
|
|
||
|
class ConnectMethodACL(UserBaseACL):
|
||
|
connect_methods = models.JSONField(default=list, verbose_name=_('Connect methods'))
|