05/31 Teller.io connection
This commit is contained in:
@@ -29,6 +29,7 @@ def create_app(config_name=None):
|
||||
from app.routes.ai import ai_bp
|
||||
from app.routes.reports import reports_bp
|
||||
from app.routes.settings import settings_bp
|
||||
from app.routes.teller import teller_bp
|
||||
|
||||
app.register_blueprint(auth_bp)
|
||||
app.register_blueprint(dashboard_bp)
|
||||
@@ -41,6 +42,7 @@ def create_app(config_name=None):
|
||||
app.register_blueprint(ai_bp)
|
||||
app.register_blueprint(reports_bp)
|
||||
app.register_blueprint(settings_bp)
|
||||
app.register_blueprint(teller_bp)
|
||||
|
||||
with app.app_context():
|
||||
from app.models import (
|
||||
@@ -49,6 +51,7 @@ def create_app(config_name=None):
|
||||
Investment, InvestmentTransaction, NetWorthSnapshot,
|
||||
AiInsight, FxRate
|
||||
)
|
||||
from app.models.teller_enrollment import TellerEnrollment, TellerAccount
|
||||
|
||||
app.jinja_env.globals['format_currency'] = format_currency
|
||||
app.jinja_env.globals['format_percent'] = format_percent
|
||||
|
||||
Reference in New Issue
Block a user