2.2.4-beta build

This commit is contained in:
Christopher Landwehr
2025-07-26 10:22:47 -04:00
parent a8730bf9e9
commit 473f9969dd
362 changed files with 659 additions and 688 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/sh
# Get token from Request Header Authorization
USER_TOKEN="${HTTP_AUTHORIZATION}"
# Remove token from file
sed -i -e "s/.*${USER_TOKEN}.*//g" /tmp/auth_success 2>/dev/null
echo "Content-Type: application/json"
echo "Cache-Control: no-cache, no-store, must-revalidate"
echo "Pragma: no-cache"
echo "Expires: 0"
echo ""
echo '{"state":"success", "message":"Logged out successfully"}'