mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
525 B
17 lines
525 B
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from common.db.models import JMSBaseModel
|
|
from .session import Session
|
|
|
|
|
|
class SessionReplay(JMSBaseModel):
|
|
session = models.ForeignKey(Session, on_delete=models.CASCADE, verbose_name=_("Session"))
|
|
|
|
class Meta:
|
|
verbose_name = _("Session replay")
|
|
permissions = [
|
|
('upload_sessionreplay', _("Can upload session replay")),
|
|
('download_sessionreplay', _("Can download session replay")),
|
|
]
|