577dd1ca7e
- Rewrite CLAUDE.md to match current 8-service architecture (was 11, 5 deleted) - Remove all as-any casts in OrderDetail.tsx (9 casts → 0) - Add cad_parsed_objects/cad_part_materials to OrderItem interface - Rename require_admin → require_global_admin across 6 router files (22 calls) - Remove EXPORT_GLB_PRODUCTION enum + generate_gltf_production_task (dead code) - Remove worker-thumbnail from ALLOWED_SERVICES, replace Flamenco link - Delete obsolete PLAN.md (1455 lines) and PLAN_REFACTOR.md (1174 lines) - Fix digit-only USD prim names with p_ prefix Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
802 B
Python
24 lines
802 B
Python
"""
|
|
Legacy import shim — tasks have moved to app.domains.pipeline.tasks.*
|
|
|
|
This module re-exports all tasks so that existing Celery task names
|
|
(registered as "app.tasks.step_tasks.*") continue to resolve.
|
|
Celery discovers tasks by import path, so these re-exports are required.
|
|
"""
|
|
from app.domains.pipeline.tasks.extract_metadata import ( # noqa: F401
|
|
process_step_file,
|
|
reextract_cad_metadata,
|
|
)
|
|
from app.domains.pipeline.tasks.render_thumbnail import ( # noqa: F401
|
|
render_step_thumbnail,
|
|
regenerate_thumbnail,
|
|
)
|
|
from app.domains.pipeline.tasks.render_order_line import ( # noqa: F401
|
|
dispatch_order_line_render,
|
|
render_order_line_task,
|
|
)
|
|
from app.domains.pipeline.tasks.export_glb import ( # noqa: F401
|
|
generate_gltf_geometry_task,
|
|
generate_usd_master_task,
|
|
)
|