mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-08-01 07:48:19 -04:00
- Updated `InvitationCreateRequest` model to change `server_ids` from required to optional with improved description. - Enhanced `library_model` to include `external_id`, `server_name`, and `enabled` fields. - Modified `InvitationFlowManager` to prioritize new many-to-many relationship checks for invitations. - Created a new migration file to merge branches related to API key and foreign key improvements. - Added comprehensive tests for API endpoints, including status, users, invitations, libraries, servers, and API key management. - Implemented error handling tests for malformed JSON and inactive API keys.
5 lines
96 B
Python
5 lines
96 B
Python
from .api_routes import api_bp
|
|
from .status import status_bp
|
|
|
|
__all__ = ["api_bp", "status_bp"]
|