From c3c578a34338a4ea6e17a4be3124c3e2e6489c97 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Sun, 16 Nov 2025 17:39:57 +0100 Subject: [PATCH] changed req params source --- identity/dto/access.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/identity/dto/access.go b/identity/dto/access.go index 55c3baa..2454fa4 100644 --- a/identity/dto/access.go +++ b/identity/dto/access.go @@ -1,8 +1,8 @@ package identity type CheckAccessRequestDTO struct { - URL string `query:"url"` - Service string `query:"srv"` + URL string `json:"url"` + Service string `josn:"srv"` } type CheckAccessResponseDTO struct {