Skip to content

Commit

Permalink
fix(doc): Corrected link - closes #43
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieucarbou committed Jan 31, 2025
1 parent 730289a commit 1b29f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ Middleware is a way to intercept requests to perform some operations on them, li
Middleware can either be attached to individual handlers, attached at the server level (thus applied to all handlers), or both.
They will be executed in the order they are attached, and they can stop the request processing by sending a response themselves.
You can have a look at the [SimpleServer.ino](https://github.com/ESP32Async/ESPAsyncWebServer/blob/main/examples/SimpleServer/SimpleServer.ino) example for some use cases.
You can have a look at the [examples](https://github.com/ESP32Async/ESPAsyncWebServer/blob/main/examples) for some use cases.
For example, such middleware would handle authentication and set some attributes on the request to make them available for the next middleware and for the handler which will process the request.
Expand Down

0 comments on commit 1b29f18

Please sign in to comment.