Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
hevelius committed Jun 20, 2024
1 parent a71447e commit 604254d
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/routers/features/it-wallet/eid/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,11 @@ addHandler(itwRouter, "get", addItwPrefix("/as/par"), (req, res) => {
* @param request_uri - The request_uri
* @param idphint - The idphint user choice
*/
addHandler(
itwRouter,
"get",
addItwPrefix("/authorize/:client_id/:request_uri/:idphint"),
(_, res) => {
res.status(200).send("authorization_token");
}
);
addHandler(itwRouter, "get", addItwPrefix("/authorize"), (req, res) => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { client_id, request_uri, idphint } = req.query;
res.status(200).send("authorization_token");
});

/**
* Callback Endpoint
Expand Down

0 comments on commit 604254d

Please sign in to comment.