- Implemented role-based access control for project and scenario routes. - Added authorization checks to ensure users have appropriate roles for viewing and managing projects and scenarios. - Introduced utility functions for ensuring project and scenario access based on user roles. - Refactored project and scenario routes to utilize new authorization helpers. - Created initial data seeding script to set up default roles and an admin user. - Added tests for authorization helpers and initial data seeding functionality. - Updated exception handling to include authorization errors.
21 lines
503 B
Python
21 lines
503 B
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from scripts.initial_data import load_config, seed_initial_data
|
|
|
|
|
|
def main() -> int:
|
|
logging.basicConfig(level=logging.INFO, format="[%(levelname)s] %(message)s")
|
|
try:
|
|
config = load_config()
|
|
seed_initial_data(config)
|
|
except Exception as exc: # pragma: no cover - operational guard
|
|
logging.exception("Seeding failed: %s", exc)
|
|
return 1
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|