Skip to content

Commit

Permalink
feat: show username and did claims - fix #3 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
pagoru authored Oct 22, 2024
1 parent 0a66561 commit fb93e77
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/api/v1/create.request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const postCreateRequest: RequestType<unknown> = {
if (!username || !did || !new RegExp(PROTO_DID_REGEX).test(did))
return Response.json({ status: 403 }, { status: 403 });

console.log("- ", username, did);
await System.ovh.updateRecord(username, did);

return Response.json({ status: 200 }, { status: 200 });
Expand Down

0 comments on commit fb93e77

Please sign in to comment.