Results 6 comments of loulin

+1, `createdBy` and `owner` are not automatically set even in db model. [ORM hook](https://github.com/balderdashy/sails/blob/master/lib/hooks/orm/index.js#L65) says ``` // NOTE: If a user hook needs to add or modify model definitions, //...

@vectorZou 可以自己提一个pr学习一下,还有英文要加强哟 有空可以领个任务,把所有的API用以下形式重新封装一下: ``` js make(exports, 'updateNewsMaterial', function (news, callback) { var url = this.prefix + 'material/update_news?access_token=' + this.token.accessToken; this.request(url, postJSON(news), wrapper(callback)); }); ```

Thanks @dzuluaga, it works by using sequelize combinations. By the way, the query string should be encoded like `--data-urlencode`, such as `http://localhost:1337/user?where={"$or":[{"name":{"$like":"hello%25"}},{"id":2}]}`, where `%25` denotes to `%`, otherwise the where...

We don't need to define all activity validators especially when there are too many activities with the same logic. We can use global deny or allow, but if they are...

@sorrycc 麻烦合并发布一下,谢谢

3.0都还没发布,v5集成还存在很多问题,现在可能最缺的就是代码审查了