refactor(core): Add fn get_organization to centurion mixin

Fn is required for perms to work correctly

ref: #870
This commit is contained in:
2025-07-13 22:28:01 +09:30
parent 9a516fbebc
commit 3baed3f8f5
5 changed files with 6 additions and 16 deletions

View File

@ -196,6 +196,12 @@ class Centurion(
def get_organization(self):
"""Return the objects organization"""
return self.organization
def get_url(
self, relative: bool = False, api_version: int = 2, many = False, request: any = None
) -> str: