hyperh
hyperh
@osterkraft I'm no longer working on the project that used this library, so unfortunately I can't help you out. Best of luck.
This didn't work for me, but the following did: ``` // https://github.com/json-schema/json-schema/wiki/anyOf,-allOf,-oneOf,-not const nullOrObj = { anyOf: [ { type: ['null', 'object'] }, ], }; const Schemas = { events:...
Getting the same error
Figured it out. Here's my code in case anyone wants to do the same. ``` // server/routes app.get('/auth/facebook', passport.authenticate('facebook', { display: 'popup' })); app.get('/auth/facebook/callback', passport.authenticate('facebook', { successRedirect: '/auth/facebook/success', failureRedirect: '/login'...