Skip to content

Commit

Permalink
Bug Fix - Hide sensitive info
Browse files Browse the repository at this point in the history
  • Loading branch information
sillvva committed Nov 16, 2020
1 parent 66320a1 commit 8bdfa8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/routes/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,10 @@ export default (options: APIRouteOptions) => {
weekdays: [false, false, false, false, false, false, false],
xWeeks: 2,
clearReservedOnRepeat: false,
env: process.env,
env: {
REMINDERS: process.env.REMINDERS,
RESCHEDULING: process.env.RESCHEDULING,
},
is: {
newgame: !req.query.g ? true : false,
editgame: req.query.g ? true : false,
Expand Down

0 comments on commit 8bdfa8d

Please sign in to comment.