Sylvain LAPENDRY
Sylvain LAPENDRY
For one-time jobs, when nextRunAt is null, Agenda-UI shows "Next:" with the current date (now). Shouldn't it show "Never" instead ?
Hi, I'm new to Nodal, but seems really awesome. However, in my psql database, I want to geolocate my users, so I want a geometric type: point. Nodal won't allow...
I tried to deploy my Nodal API on polybit, but got this error on deploy (using nodal v0.12.2): ``` λ nodal poly:deploy refab Compiling... C:\Users\SylvainLap\AppData\Roaming\npm\node_modules\nodal\cli\commands\poly\deploy.js:80 return cb(err, {filename: filename, data:...
Hi, I created a table thanks to a first migration. ``` up() { return [ this.createTable('tags', []), ]; } ``` Then I tried to add a unique field to that...
First of all, congrats for this lib, it's amazing ! Is there a way to start Mongoku programatically (not with a npm install -g), and define the connection string as...
res.ok()
With sails permissions v1.4.5, if I call res.ok() without any data, I get this error: ``` info: responsePolicy /home/sylvainlap/DEV/WORKSPACE/ADaM/node_modules/sails-mongo/node_modules/mongodb/lib/utils.js:98 process.nextTick(function() { throw err; }); ^ TypeError: Cannot set property '.(ørigindex)'...
Hi, I set a permission with a criteria: ``` { user: "toto", model: "post", action: "read", criteria: { where: { appId: app.id } } } ``` So my user "toto"...
When I create a Permission linked to a user, the "relation" attribute is set to "role", instead of "user". Example: ``` Permission: { "model": "560a8c5c82b8e74f11e46938", "user": "560a8ebb80d3f401134a1488", "action": "create", "relation":...
I tried to install sails-permissions on a fresh sailsjs install, and I've got this error: ``` error: Unknown policy, "basicauth", referenced in `config.policies`. error: Are you sure that policy exists?...
Hello, I tried sails-auth (v1.3.1), and followed the README. I created a new user thanks to POST /user, with {"email":"[email protected]","password":"admin123"}, and then tried to login thanks to POST /auth/local with...