mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-05 14:46:20 +00:00
* perf: 优化用户 access key 的使用和创建 * perf: 优化 access key api --------- Co-authored-by: ibuler <ibuler@qq.com>
12 lines
386 B
Python
12 lines
386 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
from rest_framework.authtoken.models import Token
|
|
|
|
|
|
class PrivateToken(Token):
|
|
"""Inherit from auth token, otherwise migration is boring"""
|
|
date_last_used = models.DateTimeField(null=True, blank=True, verbose_name=_('Date last used'))
|
|
|
|
class Meta:
|
|
verbose_name = _('Private Token')
|