Files
Reklamator/app/routes/dashboard.py
T

10 lines
248 B
Python
Raw Normal View History

"""Dashboard routes - product owner feedback management"""
from flask import Blueprint
from flask_login import login_required
bp = Blueprint('dashboard', __name__, url_prefix='/dashboard')
# Routes will be implemented in Phase 5 (User Story 3)