We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 as:
EmberApp.Task.view_by('tasks/by_assignee', key: @get('email'))
in additional:
EmberApp.Task.view('all') # as equivalent for: EmberApp.Task.find_by_view('tasks/all')
The text was updated successfully, but these errors were encountered:
use DS.Model.reopenClass
DS.Model.reopenClass
Sorry, something went wrong.
No branches or pull requests
In order to simplify fetching entities from views
We should provide simple convenience for that
for instance:
could be simplified as:
in additional:
The text was updated successfully, but these errors were encountered: