From e48c565ab62fed043c337dbec55376e0a748bfdf Mon Sep 17 00:00:00 2001 From: adlerhurst <27845747+adlerhurst@users.noreply.github.com> Date: Tue, 5 Aug 2025 09:52:29 +0200 Subject: [PATCH] update wiki links --- backend/v3/domain/command.go | 2 +- backend/v3/domain/constants.go | 2 +- backend/v3/domain/invoke.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/v3/domain/command.go b/backend/v3/domain/command.go index bc8f57ef2f..26f3e7fa75 100644 --- a/backend/v3/domain/command.go +++ b/backend/v3/domain/command.go @@ -7,7 +7,7 @@ import ( "github.com/zitadel/zitadel/backend/v3/storage/database" ) -// Commander is all it needs to implement the [command pattern](https://github.com/zitadel/zitadel/wiki/WIP:-Software-Architecture#command-pattern). +// Commander is all it needs to implement the [command pattern](https://github.com/zitadel/zitadel/wiki/Software-Architecture#command-pattern). // It is the interface all manipulations need to implement. // If possible it should also be used for queries. We will find out if this is possible in the future. type Commander interface { diff --git a/backend/v3/domain/constants.go b/backend/v3/domain/constants.go index 65098532c7..c08cae2c4e 100644 --- a/backend/v3/domain/constants.go +++ b/backend/v3/domain/constants.go @@ -10,7 +10,7 @@ import ( ) // The variables could also be moved to a struct. -// I just started with the [singleton pattern](https://github.com/zitadel/zitadel/wiki/WIP:-Software-Architecture#singleton) and kept it like this. +// I just started with the [singleton pattern](https://github.com/zitadel/zitadel/wiki/Software-Architecture#singleton) and kept it like this. var ( pool database.Pool // userCodeAlgorithm crypto.EncryptionAlgorithm diff --git a/backend/v3/domain/invoke.go b/backend/v3/domain/invoke.go index 5948893b00..2f27a81ccf 100644 --- a/backend/v3/domain/invoke.go +++ b/backend/v3/domain/invoke.go @@ -8,7 +8,7 @@ import ( ) // Invoke provides a way to execute commands within the domain package. -// It uses the [chain of responsibility](https://github.com/zitadel/zitadel/wiki/WIP:-Software-Architecture#chain-of-responsibility) pattern to handle the command execution. +// It uses the [chain of responsibility](https://github.com/zitadel/zitadel/wiki/Software-Architecture#chain-of-responsibility) pattern to handle the command execution. // The default chain includes logging, tracing, and event publishing. // If you want to invoke multiple commands in a single transaction, you can use the [commandBatch]. func Invoke(ctx context.Context, cmd Commander) error {