Add debugging endpoints for SMS hooks

These work, barely, I'm not getting any of the data I wanted to be
getting.
This commit is contained in:
Eli Ribble 2025-12-12 21:53:09 +00:00
parent 5f86274b16
commit 13fcfffcd6
No known key found for this signature in database
2 changed files with 20 additions and 0 deletions

View file

@ -131,6 +131,9 @@ func main() {
r.Post("/signin", postSignin)
r.Get("/signup", getSignup)
r.Post("/signup", postSignup)
r.Get("/sms", getSMS)
r.Get("/sms.php", getSMS)
r.Get("/sms/{org}", getSMS)
// Authenticated endpoints
r.Method("GET", "/cell/{cell}", NewEnsureAuth(getCellDetails))