From e9ddd43a46c770bd8040da968a29ba89adeb1f38 Mon Sep 17 00:00:00 2001 From: Relism Date: Thu, 27 Feb 2025 22:46:29 +0100 Subject: [PATCH] fixed dead links --- flash/core-concepts/handlers.md | 2 +- flash/file-serving/dynamic-file-server.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flash/core-concepts/handlers.md b/flash/core-concepts/handlers.md index fad1e26..3741b62 100644 --- a/flash/core-concepts/handlers.md +++ b/flash/core-concepts/handlers.md @@ -29,7 +29,7 @@ You can extend the `RequestHandler` class to create custom handlers that process Because `RequestHandler` is an abstract class, you need to implement both the `handle()` method and the `super` constructor in your custom handler to define the logic that should be executed when a request is received. -Since `RequestHandler` is an abstract class, you can leverage and chain HDI's to create cleaner and more maintainable route logic (more on that in the [Handler Default Implementations](/flash/handler-default-implementations) section). +Since `RequestHandler` is an abstract class, you can leverage and chain HDI's to create cleaner and more maintainable route logic (more on that in the [Handler Default Implementations](/flash/advanced/handler-default-implementations) section). ### 2. SimpleHandler diff --git a/flash/file-serving/dynamic-file-server.md b/flash/file-serving/dynamic-file-server.md index 71cf8e7..fb73ed9 100644 --- a/flash/file-serving/dynamic-file-server.md +++ b/flash/file-serving/dynamic-file-server.md @@ -13,7 +13,7 @@ corresponding file from the server. This is where a dynamic file server comes in ::: warning The dynamic file server relies heavily on the concept of dynamic handlers, which are handlers that will resolve for -any subpath of the endpoint they are registered to (see [Handler Types](/flash/handlers) for more info). +any subpath of the endpoint they are registered to (see [Handler Types](/flash/core-concepts/handlers) for more info). ::: ## Usage