Adding the request ip for hook filter:api.user.signup.allowed.result (#2416)

* Adding the request ip for hook filter:api.user.signup.allowed.result

* Fix typo
pull/2421/head
John Livingston 2020-01-20 14:58:44 +01:00 committed by Chocobozzz
parent 98da1a7b4a
commit 70870adfac
1 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,9 @@ let serverCommit: string
async function getConfig (req: express.Request, res: express.Response) {
const { allowed } = await Hooks.wrapPromiseFun(
isSignupAllowed,
{},
{
ip: req.ip
},
'filter:api.user.signup.allowed.result'
)