Mike DeVita

Results 29 comments of Mike DeVita

thank you everyone for chiming in on this, I realize this is a closed issue but this helped solve an auth/CORS issue I had when trying to hit a MVC...

I too would find this useful.. given a query to `/checklist` with your blueprint you'd expect something like this.. ``` javascript [{ info: { start: 0, end: 30, limit: 30,...

Yeah I took a peak. Unfortunately at first glance it looks like you'd need to modify actionUtil. Sent from my iPhone > On Aug 21, 2015, at 4:47 PM, Randall...

@ghaiklor that idea wont work as is because you call `const config = require('../../config/services/mailer');` independently and don't hook into `sails.config.services.*` so either there needs to be a change in the...

a bit of an update, by making the services functions you can then obtain access to `sails.config` e.g; **api/services/CipherService.js** ```javascript module.exports = { jwt: (config) => cipher('jwt', _.merge({}, sails.config.services.cipher.jwt, config))...

I'd suggest adding a prompt for body token or header token, and if header use the `ExtractJwt.fromAuthHeader()` method... for me changing to the `fromAuthHeader()` didn't work i had to do...

@ghaiklor yeah i dont think its required if the current ver supports both. 👍