feat(pos): remover modulo de diagramas

Eliminado: diagrams_bp, ruta /pos/diagrams, link en sidebar,
boton "Ver diagramas" en catalogo. Los archivos SVG y blueprint
se mantienen en el repo por si se reactivan en el futuro.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-05 04:32:00 +00:00
parent c333f2eaf0
commit 341bdcc743
3 changed files with 1 additions and 21 deletions

View File

@@ -54,9 +54,6 @@ def create_app():
from blueprints.marketplace_bp import marketplace_bp
app.register_blueprint(marketplace_bp)
from blueprints.diagrams_bp import diagrams_bp
app.register_blueprint(diagrams_bp)
# Health check
@app.route('/pos/health')
def health():
@@ -123,10 +120,6 @@ def create_app():
def pos_marketplace():
return render_template('marketplace.html')
@app.route('/pos/diagrams')
def pos_diagrams():
return render_template('diagrams.html')
@app.route('/pos/static/<path:filename>')
def pos_static(filename):
return send_from_directory('static', filename)