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:
parent
5f86274b16
commit
13fcfffcd6
2 changed files with 20 additions and 0 deletions
3
main.go
3
main.go
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue