Skip to content

Commit b843959

Browse files
committed
fix response notation
1 parent 3937f50 commit b843959

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/api/routes/v2/mobileWallet.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ const mobileWalletV2Route: FastifyPluginAsync = async (fastify, _options) => {
111111
}),
112112
}),
113113
response: {
114-
204: {
115-
description: "A mobile wallet pass has been generated.",
114+
200: {
115+
description: "The mobile wallet pass has been generated.",
116116
content: {
117117
"application/vnd.apple.pkpass": {
118118
schema: z.any(),
@@ -132,7 +132,7 @@ const mobileWalletV2Route: FastifyPluginAsync = async (fastify, _options) => {
132132
redisClient: fastify.redisClient,
133133
logger: request.log,
134134
});
135-
const { preferred_username: upn, email, name } = verifiedData;
135+
const { preferred_username: upn, name } = verifiedData;
136136
const netId = upn.replace("@illinois.edu", "");
137137
if (netId.includes("@")) {
138138
request.log.error(

0 commit comments

Comments
 (0)