Jonathan Samines
Jonathan Samines
Is there a reason to validate those params using two separate schemas as opposed to using just one with both properties declared? Anyway, schemas won't allow unknown properties unless you...
Hey @tomalex0 you could just export a function, which returns the `getStatus` function as an object, which would have access to the config object. Would be something like: ### utility.js...
This is already supported as of `@hapi/hapi` 21.0.0.
In the past, I have used Joi extensions to do this: Extension: ```js 'use strict'; const parse = require('parse-duration'); function JoiDurationExtension(Joi) { return ({ type: 'number', base: Joi.number(), coerce(value, helpers)...
Hey, have you tried the combination of `append` with `extract`? I think it'll only work for objects, but should work for your intended use case: ```js 'use strict'; const Joi...
These changes were implemented by #173. Should we close this PR?
Hey @TimFroidcoeur. We don't provide type definitions for this library, that means you are probably getting them from DefinitelyTyped. I'd open an issue/PR there instead.
Hey @pathikrit. Did you tried my [suggestion](https://github.com/lelylan/simple-oauth2/issues/420#issuecomment-1414073828) at your previous issue? Did it worked? If not, how is it failing? This kind of issue is mostly a matter of configuration....
Hey @Ugesh2204. When you say your environment is "react". What do you mean exactly? Is your code bundled and shipped to browsers? Keep this in mind: this library is designed...
@andreareginato Can you take a look at this? Seems like the old github.com pages are deprecated and we now need to update the project's description to the github.io domain. I...