NEW: Remove English text from the Spanish translation (#700) (#1079)

This commit is contained in:
TheHandyOwl 2025-05-24 13:32:38 +02:00 committed by GitHub
parent 12b0114882
commit 68f2a91630
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -765,8 +765,6 @@ Al proteger rutas en una API, tradicionalmente se devuelve una respuesta HTTP co
let protectedRoutes = app.grouped(User.redirectMiddleware(path: "/login?loginRequired=true"))
```
The `RedirectMiddleware` object also supports passing a closure that returns the redirect path as a `String` during creation for advanced url handling. For instance, including the path redirected from as query parameter to the redirect target for state management.
El objeto `RedirectMiddleware` también admite pasar un closure que devuelve la ruta de redireccionamiento como un `String` durante la creación para un manejo avanzado de URL. Por ejemplo, incluye la ruta redirigida como parámetro de consulta al destino de redirección para la gestión del estado.
```swift