From 3544e7a0274df02ac32f265a691bb631ab858e21 Mon Sep 17 00:00:00 2001 From: Magnus Svensson Date: Thu, 18 Dec 2025 15:29:11 +0100 Subject: [PATCH] Fix web api endpoints. --- internal/apigw/httpserver/endpoints_users.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/apigw/httpserver/endpoints_users.go b/internal/apigw/httpserver/endpoints_users.go index 6c1b1a6af..63caf46a9 100644 --- a/internal/apigw/httpserver/endpoints_users.go +++ b/internal/apigw/httpserver/endpoints_users.go @@ -29,7 +29,7 @@ func (s *Service) endpointAddPIDUser(ctx context.Context, c *gin.Context) (any, return nil, err } - return nil, nil + return gin.H{}, nil } func (s *Service) endpointLoginPIDUser(ctx context.Context, c *gin.Context) (any, error) { @@ -67,7 +67,7 @@ func (s *Service) endpointLoginPIDUser(ctx context.Context, c *gin.Context) (any return nil, err } - return nil, nil + return gin.H{}, nil } func (s *Service) endpointUserAuthenticSourceLookup(ctx context.Context, c *gin.Context) (any, error) {