From 3119cc7450c116186e9d9e506169ee1be9d286ee Mon Sep 17 00:00:00 2001 From: sujitaw Date: Mon, 1 Sep 2025 22:09:27 +0530 Subject: [PATCH] fix/verify credentials api (#1420) Signed-off-by: sujitaw --- .../agent-service/agent-service.controller.ts | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/apps/api-gateway/src/agent-service/agent-service.controller.ts b/apps/api-gateway/src/agent-service/agent-service.controller.ts index 6ef12047c..90fbbb68c 100644 --- a/apps/api-gateway/src/agent-service/agent-service.controller.ts +++ b/apps/api-gateway/src/agent-service/agent-service.controller.ts @@ -151,16 +151,16 @@ export class AgentController { summary: 'Validates signed data from agent, including credentials', description: 'Credentials or any other data signed by the organisation is validated' }) - @UseGuards(AuthGuard('jwt'), OrgRolesGuard) - @Roles( - OrgRoles.OWNER, - OrgRoles.ADMIN, - OrgRoles.HOLDER, - OrgRoles.ISSUER, - OrgRoles.SUPER_ADMIN, - OrgRoles.MEMBER, - OrgRoles.VERIFIER - ) + // @UseGuards(AuthGuard('jwt'), OrgRolesGuard) + // @Roles( + // OrgRoles.OWNER, + // OrgRoles.ADMIN, + // OrgRoles.HOLDER, + // OrgRoles.ISSUER, + // OrgRoles.SUPER_ADMIN, + // OrgRoles.MEMBER, + // OrgRoles.VERIFIER + // ) async verifysignature( @Param('orgId') orgId: string, @Body() data: IVerifySignature,