From 51ebbdf9d59d2e8284cd0e38d69cf487e4dca699 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..64ba125 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 `json:"srv"` } type CheckAccessResponseDTO struct {