Ilya Radchenko

Results 184 issues of Ilya Radchenko

Probably a good idea, since it's pretty polished and supports versioning. https://github.com/ember-learn/ember-cli-addon-docs

good first issue

count=72 current=32 Only one separator is used, towards the beginning but really there should be two, one towards the end.

bug
help wanted

Currently one component shares the burden, making it slower since there are checks that need to be done for the two types. Two components: `{{x-pagination}}` and `{{x-pager}}`. In the future...

Sometimes it's very impractical to display 20+ page numbers, especially on mobile devices. The api should allow for a way to specify the maximum number of pages to display, like...

enhancement
help wanted

See https://github.com/stewartml/express-decorators/commit/95a95bdf61cf2e155d250123fbab1e4ee8955855

Controller level decorator ``` js @schema('propertyId') @schema(JoiObject) ``` To be used like so: ``` js @controller('/users') @schema('validation') class Users { constructor(validation) { this.validation = validation } @put('/{id}') @validate() update (request,...

enhancement

``` js @auth(false) @auth('facebook') @auth('facebook', 'google') @auth({ strategies: [] }) ```

enhancement

Calls a method before the current one. ``` js @pre('fetchUsers') @pre('fetchUser', { assign: 'user', failAction: 'error' }) @pre([ // hapijs pre array config ]) ``` Still wondering how far I...

enhancement

Don't use babel-node, since that isn't meant for production.

documentation