Alexey

Results 48 issues of Alexey

Good for Contributors

in general: http://take.ms/O40n6y

There are both expressions should be available: ``` options = 'key="%@"&include_docs=true'.fmt(type); issues = App.Issue.find({type: "view", designDoc: 'issues', viewName: "all_by_board", options: options}); ``` ``` options = {key: type, include_docs: true}; issues...

In order to simplify fetching entities from views We should provide simple convenience for that for instance: ``` EmberApp.Task.find({type: "view", designDoc: 'tasks', viewName: "by_assignee", options: 'include_docs=true&key="%@"'.fmt(@get('email'))}) ``` could be simplified...