06/02 Integrate Schwab

This commit is contained in:
2026-06-02 17:05:44 -04:00
parent c9eb1b89fc
commit 249300b871
10 changed files with 1004 additions and 2 deletions
+3
View File
@@ -89,6 +89,7 @@ def create_app(config_name=None):
from app.routes.reports import reports_bp
from app.routes.settings import settings_bp
from app.routes.teller import teller_bp
from app.routes.schwab import schwab_bp
from app.routes.logs import logs_bp
from app.routes.bank_import import bank_import_bp
@@ -104,6 +105,7 @@ def create_app(config_name=None):
app.register_blueprint(reports_bp)
app.register_blueprint(settings_bp)
app.register_blueprint(teller_bp)
app.register_blueprint(schwab_bp)
app.register_blueprint(logs_bp)
app.register_blueprint(bank_import_bp)
@@ -115,6 +117,7 @@ def create_app(config_name=None):
AiInsight, FxRate
)
from app.models.teller_enrollment import TellerEnrollment, TellerAccount
from app.models.schwab_connection import SchwabConnection, SchwabAccount
@app.after_request
def security_headers(response):