progress on disbursement endpoint

This commit is contained in:
lennyaiko
2025-04-10 21:50:25 +01:00
parent f408da5a75
commit 6b272eb107
3 changed files with 24 additions and 16 deletions
+3 -2
View File
@@ -1,8 +1,9 @@
import requests
from flask import current_app
def get_headers():
return {
"Authorization": f"Bearer {current_app.config['JWT_SECRET_KEY']}",
"Content-Type": "application/json"
"Content-Type": "application/json",
"Accept": "application/json",
}