Dan Rocha

Results 22 comments of Dan Rocha

Try with `.text('Candice')`

You can create a production repo @molerat619 so you can `gulp/grunt build` on your local and push it to your production repo. Then on your server only `git pull &&...

@samsfisher It shouldn't necessarily be the same repository, what I do is `git clone original dev && cd dev` `git clone production dist` So the `dist` folder is another repo...

I use i18next with sharing locales on the backend with sequelize validations and frontend jade compiling as well as angular service

Have you tried to run the tests in an isolated way ? Specifically run the tests on those files.

Check PR #52 , you might find workarounds there and further discussion.

Yes, I understand the `limit` default is 30, however, sending a limit of 10 pagination should be skipping `_this.param('limit').value() * (value - 1)`, right? And for a limit of 10...

Further info (debugging `querymen/dist/querymen-schema.js`) : ``` URL: /branch-products?sort=-createdAt&page=1&limit=10 req.query { sort: '-createdAt', page: '1', limit: '10' } querymen-schema.js:269 - get | this.params[name].value(): 30 | name: limit // here limit is...

I don't see any test regarding pagination on https://github.com/chemitaxis/test_rest I'll try to make a PR reproducing the problems, but I've found that the problem happens after using a custom Schema....

@chemitaxis can you explain further [this](https://github.com/diegohaz/querymen/pull/49/files#diff-1fdf421c05c1140f6d71444ea2b27638R72) comments? not sure I can understand them, and confirming after that PR this bug was introduced.