From 8a5333128394080e3ae9a54b7267efe98c6cd4c0 Mon Sep 17 00:00:00 2001 From: erik Date: Fri, 24 Nov 2023 14:01:32 +0100 Subject: [PATCH] Add ToDo --- models/activitypub/actor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/activitypub/actor.go b/models/activitypub/actor.go index 79d4d1d671..aa07590ec0 100644 --- a/models/activitypub/actor.go +++ b/models/activitypub/actor.go @@ -43,7 +43,7 @@ TODO: Align validation-api to example from dda-devops-build */ func (a ActorID) Validate() []string { - err := make([]string, 0, 3) + err := make([]string, 0, 3) // ToDo: Solve this dynamically if res := a.validate_is_not_empty(a.schema, "schema"); res != nil { err = append(err, res.Error())