From c158b69e084249f0ffda5cc3dc767f4d9317103f Mon Sep 17 00:00:00 2001 From: pyshx Date: Mon, 6 Nov 2023 18:23:31 +0530 Subject: [PATCH] chore(server): add bgColor to story mutation resolver --- server/internal/adapter/gql/resolver_mutation_storytelling.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/internal/adapter/gql/resolver_mutation_storytelling.go b/server/internal/adapter/gql/resolver_mutation_storytelling.go index 68e34c1a7a..36133680a4 100644 --- a/server/internal/adapter/gql/resolver_mutation_storytelling.go +++ b/server/internal/adapter/gql/resolver_mutation_storytelling.go @@ -44,6 +44,7 @@ func (r *mutationResolver) UpdateStory(ctx context.Context, input gqlmodel.Updat Title: input.Title, Index: input.Index, PanelPosition: gqlmodel.FromStoryPositionRef(input.PanelPosition), + BgColor: input.BgColor, IsBasicAuthActive: input.IsBasicAuthActive, BasicAuthUsername: input.BasicAuthUsername,