Build and Push / build (release) Successful in 50s
- GET /auth/groups - list groups with search/pagination - POST /auth/groups/sync-from-authentik - bulk sync from Authentik - Group model and database migration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
437 B
Python
20 lines
437 B
Python
"""
|
|
SQLAlchemy Models for Core-API
|
|
|
|
Database models for authentication, authorization, and user management.
|
|
"""
|
|
from src.db.models.user import User
|
|
from src.db.models.role import Role, UserRole
|
|
from src.db.models.user_preferences import UserPreferences
|
|
from src.db.models.api_key import ApiKey
|
|
from src.db.models.group import Group
|
|
|
|
__all__ = [
|
|
"User",
|
|
"Role",
|
|
"UserRole",
|
|
"UserPreferences",
|
|
"ApiKey",
|
|
"Group",
|
|
]
|