Skip to content

Commit

Permalink
Removed changes to Dockerfile/ Removed invitePending from users.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
chrtorres committed Apr 8, 2024
1 parent ffcca4e commit c66bfcd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:18-alpine3.17
USER root

RUN apk update && apk upgrade && apk add g++ make py3-pip
RUN apk update && apk upgrade

WORKDIR /app
COPY ./package* ./
Expand Down
1 change: 0 additions & 1 deletion backend/src/api/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,6 @@ export const RSCRegister = wrapHandler(async (event) => {
lastName: body.lastName,
email: body.email.toLowerCase(),
userType: UserType.READY_SET_CYBER,

Check failure on line 935 in backend/src/api/users.ts

View workflow job for this annotation

GitHub Actions / lint

Delete `,`
invitePending: true
};

await connectToDatabase();
Expand Down

0 comments on commit c66bfcd

Please sign in to comment.