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.
16 lines
343 B
16 lines
343 B
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from common.utils import get_logger
|
|
from tickets.models import TicketSession
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
def is_session_approver(session_id, user_id):
|
|
ticket = TicketSession.get_ticket_by_session_id(session_id)
|
|
if not ticket:
|
|
return False
|
|
ok = ticket.has_all_assignee(user_id)
|
|
return ok
|