Skip to content

Commit

Permalink
feat(locksmith): unlock-protocol.eth is allowed to bypass recaptcha
Browse files Browse the repository at this point in the history
  • Loading branch information
julien51 committed Mar 18, 2024
1 parent 9b22953 commit f9c4306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions locksmith/src/utils/middlewares/recaptchaMiddleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import logger from '../../logger'
/**
* A list of authenticated users who are making calls for which we should bypass the captcha veification
*/
const allowList = [].map((address: string) =>
normalizer.ethereumAddress(address)
const allowList = ['0xF5C28ce24Acf47849988f147d5C75787c0103534'].map(
(address: string) => normalizer.ethereumAddress(address)
)

export const captchaMiddleware: RequestHandler = async (
Expand Down

0 comments on commit f9c4306

Please sign in to comment.