mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-28 19:34:53 +00:00
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'))
|