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.
23 lines
593 B
23 lines
593 B
from rest_framework.generics import RetrieveDestroyAPIView
|
|
|
|
from orgs.utils import tmp_to_root_org
|
|
from ..models import Ticket
|
|
from ..serializers import SuperTicketSerializer
|
|
|
|
__all__ = ['SuperTicketStatusAPI']
|
|
|
|
|
|
class SuperTicketStatusAPI(RetrieveDestroyAPIView):
|
|
serializer_class = SuperTicketSerializer
|
|
rbac_perms = {
|
|
'GET': 'tickets.view_superticket',
|
|
'DELETE': 'tickets.change_superticket'
|
|
}
|
|
|
|
def get_queryset(self):
|
|
with tmp_to_root_org():
|
|
return Ticket.objects.all()
|
|
|
|
def perform_destroy(self, instance):
|
|
instance.close()
|