From 24cf199a8c7a0abe894daeac6780386a9611678b Mon Sep 17 00:00:00 2001 From: Luke Duncalfe <lduncalfe@eml.cc> Date: Tue, 4 Feb 2025 10:27:04 +1300 Subject: [PATCH] Link TokenAuthenticatable from utilities page This gives the `TokenAuthenticatable` docs a similar treatment to `ReactiveCaching` module which is linked in a similar way. --- doc/development/utilities.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/development/utilities.md b/doc/development/utilities.md index 4f8034d2ec301..5fdee3cce81a6 100644 --- a/doc/development/utilities.md +++ b/doc/development/utilities.md @@ -285,6 +285,10 @@ end Read the documentation on [`ReactiveCaching`](reactive_caching.md). +## `TokenAuthenticatable` + +Read the documentation on [`TokenAuthenticatable`](token_authenticatable.md). + ## `CircuitBreaker` The `Gitlab::CircuitBreaker` can be wrapped around any class that needs to run code with circuit breaker protection. It provides a `run_with_circuit` method that wraps a code block with circuit breaker functionality, which helps prevent cascading failures and improves system resilience. For more information about the circuit breaker pattern, see: -- GitLab