Fix Dynu DNS record updates to use POST endpoint

This commit is contained in:
beatz174-bit
2026-04-29 13:46:17 +10:00
parent 99fcdef286
commit 821dc055c1
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ func (s *Server) serveRecordRoutes(w http.ResponseWriter, r *http.Request, segme
case http.MethodGet:
s.handleGetRecord(w, domainID, recordID)
return
case http.MethodPut:
case http.MethodPut, http.MethodPost:
s.handleUpdateRecord(w, r, domainID, recordID)
return
case http.MethodDelete: