35d70a7746
- Added a new API endpoint for managing ReconConfigs at /api/configs, including GET, POST, PUT, and a test URL feature. - Implemented a new configuration editor UI at /configs for creating and editing ReconConfigs. - Introduced a new configs list page at /configs to display existing configurations with options to edit. - Updated base HTML template to include a link to the new configs page. - Created stub configuration and authentication models for workspace development. - Added a stub configuration module to handle database configuration without a real database.
8 lines
185 B
Python
8 lines
185 B
Python
"""Stub auth model for workspace — production version lives in the real repo."""
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class UserResponse(BaseModel):
|
|
username: str
|
|
email: str = ""
|