Skip to content

Commit

Permalink
feat: allow c1 issuer (#16)
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Glastra <[email protected]>
  • Loading branch information
TimoGlastra authored Aug 19, 2024
1 parent b34dcf7 commit 203e3cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agent/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if (!process.env.P256_SEED || !process.env.AGENT_HOST || !process.env.AGENT_WALLET_KEY || !process.env.AGENT_DNS) {
throw new Error('P256_SEED, AGENT_HOST or AGENT_WALLET_KEY env variable not set')
throw new Error('P256_SEED, AGENT_HOST or AGENT_WALLET_KEY, AGENT_DNS env variable not set')
}

const AGENT_HOST = process.env.AGENT_HOST
Expand Down
5 changes: 4 additions & 1 deletion app/components/VerifyTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ export function VerifyTab() {
path: ['$.iss'],
filter: {
type: 'string',
const: 'https://demo.pid-issuer.bundesdruckerei.de/c',
enum: [
'https://demo.pid-issuer.bundesdruckerei.de/c',
'https://demo.pid-issuer.bundesdruckerei.de/c1',
],
},
},
{
Expand Down

0 comments on commit 203e3cc

Please sign in to comment.