(20241218) Can now send tags to apply with the payment request itself, and can even update tags later.
This commit is contained in:
@@ -104,6 +104,7 @@ from api.blueprints.finstitutions.payments.request import pg_request_bp
|
||||
from api.blueprints.finstitutions.payments.callback import pg_callback_bp
|
||||
from api.blueprints.finstitutions.payments.list import pg_list_bp
|
||||
from api.blueprints.finstitutions.payments.get import pg_get_bp
|
||||
from api.blueprints.finstitutions.payments.tags import pg_tags_update_bp
|
||||
|
||||
# AI Blueprints:
|
||||
from api.blueprints.ai.llm.invoke import llm_invoke_bp
|
||||
@@ -164,6 +165,7 @@ app.register_blueprint(pg_request_bp, url_prefix = f"/{MODULE_BASE}/finstitution
|
||||
app.register_blueprint(pg_callback_bp, url_prefix = f"/{MODULE_BASE}/finstitutions/payments")
|
||||
app.register_blueprint(pg_list_bp, url_prefix = f"/{MODULE_BASE}/finstitutions/payments")
|
||||
app.register_blueprint(pg_get_bp, url_prefix = f"/{MODULE_BASE}/finstitutions/payments")
|
||||
app.register_blueprint(pg_tags_update_bp, url_prefix = f"/{MODULE_BASE}/finstitutions/payments")
|
||||
|
||||
# AI Blueprints:
|
||||
app.register_blueprint(llm_invoke_bp, url_prefix = f"/{MODULE_BASE}/ai")
|
||||
|
||||
Reference in New Issue
Block a user