mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-15 14:47:24 +00:00
10 lines
258 B
Python
10 lines
258 B
Python
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"""
|
|
|
|
class Meta:
|
|
verbose_name = _('Private Token')
|