Skip to content

Commit

Permalink
chore(arns): add arnsProcessId header to cors
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler authored and djwhitt committed Sep 16, 2024
1 parent 2661440 commit 4d9d0cb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ const app = express();

app.use(
cors({
exposedHeaders: [headerNames.arnsResolvedId, headerNames.arnsTtlSeconds],
exposedHeaders: [
headerNames.arnsResolvedId,
headerNames.arnsTtlSeconds,
headerNames.arnsProcessId,
],
}),
);

Expand Down

0 comments on commit 4d9d0cb

Please sign in to comment.