Skip to content

Commit

Permalink
Update mbop allowlist endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
aleccohan committed Jun 12, 2024
1 parent ea62d9d commit ab7020c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/mbop/mbop.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ func main() {
r.Delete("/v1/registrations/{uid}", handlers.RegistrationDeleteHandler)
r.Get("/v1/registrations/token", handlers.TokenHandler)

r.Get("/api/v1/allowlist", handlers.AllowlistListHandler)
r.Post("/api/v1/allowlist", handlers.AllowlistCreateHandler)
r.Delete("/api/v1/allowlist", handlers.AllowlistDeleteHandler)
r.Get("/api/mbop/v1/allowlist", handlers.AllowlistListHandler)
r.Post("/api/mbop/v1/allowlist", handlers.AllowlistCreateHandler)
r.Delete("/api/mbop/v1/allowlist", handlers.AllowlistDeleteHandler)
})

err := mailer.InitConfig()
Expand Down

0 comments on commit ab7020c

Please sign in to comment.