File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,15 @@ WORKDIR /app
11
11
FROM base AS prod-deps
12
12
COPY dependencies /app/dependencies
13
13
COPY tsconfig.json /app/tsconfig.json
14
+ COPY patches patches
15
+
14
16
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod
15
17
16
18
FROM base AS build
17
19
COPY dependencies /app/dependencies
18
20
COPY tsconfig.json /app/tsconfig.json
21
+ COPY patches patches
22
+
19
23
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install
20
24
COPY src src
21
25
RUN pnpm run build
Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ export const credentialRequestToCredentialMapper: CredentialRequestToCredentialM
116
116
]
117
117
: [ "https://www.w3.org/2018/credentials/v1" ] ,
118
118
// TODO: should 'VerifiableCredential' be in the issuer metadata type?
119
+ // FIXME: jwt verification did not fail when this was array within array
120
+ // W3cCredential is not validated in AFJ???
119
121
type : [ "VerifiableCredential" , ...credentialSupported . types ] ,
120
122
issuanceDate : new Date ( ) . toISOString ( ) ,
121
123
issuer : issuerDid ,
You can’t perform that action at this time.
0 commit comments