Skip to content

Commit

Permalink
fix: do not require auth for /is-patreon call
Browse files Browse the repository at this point in the history
  • Loading branch information
aalemayhu committed Oct 30, 2022
1 parent f462187 commit d09540c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/users/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ router.get('/debug/locals', RequireAuthentication, (_req, res) => {
return res.json({ locals });
});

router.get('/is-patreon', RequireAuthentication, (_req, res) => {
router.get('/is-patreon', (_req, res) => {
const { patreon } = res.locals;
return res.json({ patreon });
});
Expand Down

0 comments on commit d09540c

Please sign in to comment.