abs-auth-rbac-core 0.1.7__tar.gz → 0.1.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of abs-auth-rbac-core might be problematic. Click here for more details.
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/PKG-INFO +1 -1
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/rbac/service.py +1 -1
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/pyproject.toml +1 -1
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/README.md +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/__init__.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/auth/__init__.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/auth/auth_functions.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/auth/jwt_functions.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/auth/middleware.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/__init__.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/base_model.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/gov_casbin_rule.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/permissions.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/rbac_model.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/role_permission.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/roles.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/seeder/permission_seeder.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/user.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/user_permission.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/user_role.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/rbac/__init__.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/rbac/decorator.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/rbac/policy.conf +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/schema/__init__.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/schema/permission.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/util/__init__.py +0 -0
- {abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/util/permission_constants.py +0 -0
|
@@ -472,7 +472,7 @@ class RBACService:
|
|
|
472
472
|
for user_permission in user_permissions:
|
|
473
473
|
result.append(
|
|
474
474
|
{
|
|
475
|
-
"permission_id": user_permission.permission.
|
|
475
|
+
"permission_id": user_permission.permission.uuid,
|
|
476
476
|
"created_at": user_permission.permission.created_at,
|
|
477
477
|
"updated_at": user_permission.permission.updated_at,
|
|
478
478
|
"name": user_permission.permission.name,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/auth/auth_functions.py
RENAMED
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/auth/jwt_functions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/base_model.py
RENAMED
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/gov_casbin_rule.py
RENAMED
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/permissions.py
RENAMED
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/rbac_model.py
RENAMED
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/role_permission.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/user_permission.py
RENAMED
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/models/user_role.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{abs_auth_rbac_core-0.1.7 → abs_auth_rbac_core-0.1.8}/abs_auth_rbac_core/schema/permission.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|