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
This commit is contained in:
parent
98da1a7b4a
commit
70870adfac
|
@ -50,7 +50,9 @@ let serverCommit: string
|
||||||
async function getConfig (req: express.Request, res: express.Response) {
|
async function getConfig (req: express.Request, res: express.Response) {
|
||||||
const { allowed } = await Hooks.wrapPromiseFun(
|
const { allowed } = await Hooks.wrapPromiseFun(
|
||||||
isSignupAllowed,
|
isSignupAllowed,
|
||||||
{},
|
{
|
||||||
|
ip: req.ip
|
||||||
|
},
|
||||||
'filter:api.user.signup.allowed.result'
|
'filter:api.user.signup.allowed.result'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue