Skip to content

Commit 2a446e6

Browse files
authored
Merge pull request #1421 from credebl/develop
fix: Badge verification page issue
2 parents 9a38856 + 3119cc7 commit 2a446e6

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

apps/api-gateway/src/agent-service/agent-service.controller.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -151,16 +151,16 @@ export class AgentController {
151151
summary: 'Validates signed data from agent, including credentials',
152152
description: 'Credentials or any other data signed by the organisation is validated'
153153
})
154-
@UseGuards(AuthGuard('jwt'), OrgRolesGuard)
155-
@Roles(
156-
OrgRoles.OWNER,
157-
OrgRoles.ADMIN,
158-
OrgRoles.HOLDER,
159-
OrgRoles.ISSUER,
160-
OrgRoles.SUPER_ADMIN,
161-
OrgRoles.MEMBER,
162-
OrgRoles.VERIFIER
163-
)
154+
// @UseGuards(AuthGuard('jwt'), OrgRolesGuard)
155+
// @Roles(
156+
// OrgRoles.OWNER,
157+
// OrgRoles.ADMIN,
158+
// OrgRoles.HOLDER,
159+
// OrgRoles.ISSUER,
160+
// OrgRoles.SUPER_ADMIN,
161+
// OrgRoles.MEMBER,
162+
// OrgRoles.VERIFIER
163+
// )
164164
async verifysignature(
165165
@Param('orgId') orgId: string,
166166
@Body() data: IVerifySignature,

0 commit comments

Comments
 (0)