Skip to content

Commit

Permalink
Revert change: set Registration Status of UX Open to waitlist upon pa…
Browse files Browse the repository at this point in the history
…yment
  • Loading branch information
voctory authored Oct 16, 2024
1 parent c2a8232 commit 2a84faa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions services/payments/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,7 @@ export const webhook = async (event, ctx, callback) => {
const body = {
eventID: data.eventID,
year: Number(data.year),
registrationStatus:
eventIDAndYear === "ux-open;2024" ? "waitlist" : "registered"
registrationStatus: "registered"
};
await updateHelper(body, false, data.email, data.fname);
const response = helpers.createResponse(200, {
Expand Down

0 comments on commit 2a84faa

Please sign in to comment.