Compare commits

...

2 Commits

Author SHA1 Message Date
7468b1b391 Bump version: 1.3.37 → 1.3.38
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 3m31s
2025-07-18 09:23:33 +01:00
3191fabf39 notification test 2025-07-18 09:23:30 +01:00
3 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.3.37"
current_version = "1.3.38"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.3.37
1.3.38

3
app.py
View File

@ -155,7 +155,8 @@ def send_test_notification_proxy():
try:
response = requests.post(
backend_url,
auth=requests.auth.HTTPBasicAuth(username, password)
auth=requests.auth.HTTPBasicAuth(username, password),
json={"message": "Ktv Test"}
)
return Response(response.content, status=response.status_code, mimetype=response.headers['Content-Type'])
except requests.exceptions.RequestException as e: