Skip to content

Commit

Permalink
fix: GET TM for id
Browse files Browse the repository at this point in the history
  • Loading branch information
damikael committed Jun 19, 2024
1 parent 18cd18f commit 24c9291
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion www/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ function ($f3) {

$trust_mark = new TrustMark($config, $sub, $id);
echo json_encode(array(
'id' => $config['client_id'] . '/intermediate/private',
'id' => $id,
'iss' => $config['client_id'],
'trust_mark' => $trust_mark->makeJwt()
));

Expand Down

0 comments on commit 24c9291

Please sign in to comment.