Files
core-api/src/db/models/__init__.py
T
Jeroen SchweitzerandClaude Opus 4.5 e85c9a123d
Build and Push / build (release) Successful in 50s
feat: add groups management API
- 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>
2026-01-01 22:28:06 +01:00

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",
]