mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-07-02 01:32:08 +00:00
* perf: 修改账号配置 * perf: 修改 account * perf: 修改 virtual account * perf: 虚拟账号增加密码选项 * perf: 修改获取虚拟账号 * perf: 修改 virtual account * perf: 修改一些写法 * perf: 添加说明 --------- Co-authored-by: ibuler <ibuler@qq.com>
10 lines
229 B
Python
10 lines
229 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
__all__ = ['VaultTypeChoices']
|
|
|
|
|
|
class VaultTypeChoices(models.TextChoices):
|
|
local = 'local', _('Database')
|
|
hcp = 'hcp', _('HCP Vault')
|