mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-14 11:27:39 +08:00
- Implemented user management functionality in UsersPage including user creation, editing, deletion, and role assignment. - Added role management functionality in RolesPage with role creation, editing, deletion, and path rule management. - Created users API for handling user-related operations. - Created roles API for handling role-related operations. - Integrated permissions handling in both user and role management. - Enhanced UI with Ant Design components for better user experience.
20 lines
277 B
Python
20 lines
277 B
Python
from .database import (
|
|
StorageAdapter,
|
|
UserAccount,
|
|
Role,
|
|
UserRole,
|
|
Permission,
|
|
RolePermission,
|
|
PathRule,
|
|
)
|
|
|
|
__all__ = [
|
|
"StorageAdapter",
|
|
"UserAccount",
|
|
"Role",
|
|
"UserRole",
|
|
"Permission",
|
|
"RolePermission",
|
|
"PathRule",
|
|
]
|