- Service `app/services/test_templates.py`: CRUD with MITRE tag resolution (kind, external_id) → polymorphic join, filters by tactic/technique/ subtechnique/opsec/tag, `_UNSET` sentinel for partial-update semantics. - Service `app/services/scenario_templates.py`: ordered test list, reorder via full-replace (atomic w.r.t. UNIQUE(position) constraint), soft-delete. - REST endpoints on /api/v1/test-templates and /scenario-templates with pydantic schemas + perm gating (test_template.* and scenario_template.*). - /diag/reset truncates the 4 new tables before MITRE (FK ordering). - 19 pytest covering CRUD, MITRE tag merge, soft-delete chaining, perm enforcement, and reorder atomicity. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
"""Aggregate v1 blueprint. Future blueprints (missions, ...) register here."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from flask import Blueprint
|
|
|
|
from app.api.auth import bp as auth_bp
|
|
from app.api.diag import bp as diag_bp
|
|
from app.api.groups import bp as groups_bp
|
|
from app.api.health import bp as health_bp
|
|
from app.api.invitations import bp as invitations_bp
|
|
from app.api.mitre import bp as mitre_bp
|
|
from app.api.permissions import bp as permissions_bp
|
|
from app.api.scenario_templates import bp as scenario_templates_bp
|
|
from app.api.setup import bp as setup_bp
|
|
from app.api.test_templates import bp as test_templates_bp
|
|
from app.api.users import bp as users_bp
|
|
|
|
bp = Blueprint("v1", __name__, url_prefix="/api/v1")
|
|
bp.register_blueprint(health_bp)
|
|
bp.register_blueprint(diag_bp)
|
|
bp.register_blueprint(setup_bp)
|
|
bp.register_blueprint(auth_bp)
|
|
bp.register_blueprint(invitations_bp)
|
|
bp.register_blueprint(users_bp)
|
|
bp.register_blueprint(groups_bp)
|
|
bp.register_blueprint(permissions_bp)
|
|
bp.register_blueprint(mitre_bp)
|
|
bp.register_blueprint(test_templates_bp)
|
|
bp.register_blueprint(scenario_templates_bp)
|