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.
11 lines
309 B
11 lines
309 B
4 years ago
|
from rest_framework import permissions
|
||
|
|
||
|
from .utils import is_auth_password_time_valid
|
||
|
|
||
|
|
||
|
class IsAuthPasswdTimeValid(permissions.IsAuthenticated):
|
||
|
|
||
|
def has_permission(self, request, view):
|
||
|
return super().has_permission(request, view) \
|
||
|
and is_auth_password_time_valid(request.session)
|