mirror of https://github.com/Chocobozzz/PeerTube
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 typopull/2421/head
parent
98da1a7b4a
commit
70870adfac
|
@ -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'
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue