Compare commits

...

2 Commits

Author SHA1 Message Date
Aiirondev_dev d2e2339d21 removal of test emial sending service 2026-09-18 16:01:37 +02:00
Aiirondev_dev e42d82fb62 allow to oush to 1.0.0 2026-09-18 15:53:21 +02:00
2 changed files with 4 additions and 5 deletions
+1 -4
View File
@@ -150,10 +150,7 @@ jobs:
LATEST_MAJOR="0"
fi
if [ "${BUMP_TYPE:-}" != "major" ] && [ "$TAG_MAJOR" != "$LATEST_MAJOR" ]; then
echo "Error: major version must stay v$LATEST_MAJOR.x.x (got $TAG)"
exit 1
fi
if git rev-parse -q --verify "refs/tags/$TAG" >/dev/null; then
i=1
+3 -1
View File
@@ -13759,6 +13759,7 @@ def upload_csv_batch():
"images_failed": error_count
}), 200
"""
@app.route('/test_email')
def test_email():
@@ -13769,4 +13770,5 @@ def test_email():
send(email="maximiliangruendinger@gmail.com", subject="Test Email from Inventarsystem", note="This is a test email sent from the Inventarsystem application.", sender="Inventarsystem")
return "Test email sent successfully."
except Exception as e:
return f"Failed to send test email: {str(e)}", 500
return f"Failed to send test email: {str(e)}", 500
"""