Add allowed_methods to worker HTTP request configs

- wws requires both allowed_hosts and allowed_methods
- Allow GET and POST methods for n8n.mylder.io

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-15 06:09:42 +01:00
parent ed6700be85
commit d6c58818f9
2 changed files with 2 additions and 4 deletions

View File

@@ -2,7 +2,6 @@ name = "chat"
version = "1" version = "1"
[features] [features]
http_requests = true
[features.http_requests] [features.http_requests]
allowed_methods = ["GET", "POST"]
allowed_hosts = ["n8n.mylder.io"] allowed_hosts = ["n8n.mylder.io"]

View File

@@ -2,7 +2,6 @@ name = "webhook"
version = "1" version = "1"
[features] [features]
http_requests = true
[features.http_requests] [features.http_requests]
allowed_methods = ["GET", "POST"]
allowed_hosts = ["n8n.mylder.io"] allowed_hosts = ["n8n.mylder.io"]