Files
2025-08-05 10:26:39 +05:00

13 lines
266 B
Python

from rest_framework import permissions
class CompanyaccountPermission(permissions.BasePermission):
def __init__(self) -> None: ...
def __call__(self, *args, **kwargs):
return self
def has_permission(self, request, view):
return True