diff --git a/rest/middlewares/auth.go b/rest/middlewares/auth.go index cd0d8a0..7eb7150 100755 --- a/rest/middlewares/auth.go +++ b/rest/middlewares/auth.go @@ -263,7 +263,7 @@ func AuthAdmin(c *fiber.Ctx) error { func AuthApi() func(*fiber.Ctx) error { return func(c *fiber.Ctx) error { // Excluir rutas públicas - if c.Path() == "/api/v1/oauth/token" { + if c.Path() == "/api/v1/oauth/token" || c.Path() == "/api/sms/send" { return c.Next() }