From c49fde3d152339522feac00590919bb6c37333f3 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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/identity/dto/access.go b/identity/dto/access.go index 55c3baa..b67713d 100644 --- a/identity/dto/access.go +++ b/identity/dto/access.go @@ -1,9 +1,10 @@ package identity type CheckAccessRequestDTO struct { - URL string `query:"url"` - Service string `query:"srv"` + URL string `json:"url"` + Service string `json:"srv"` } type CheckAccessResponseDTO struct { + Status string `json:"status"` }