Merge pull request #4094 from frantzypants/issue-4016

Show all authors in post settings menu
This commit is contained in:
Hannah Wolfe 2014-09-22 22:35:56 +01:00
commit 2da501fff4

View File

@ -52,7 +52,7 @@ var PostSettingsMenuController = Ember.ObjectController.extend({
//Loaded asynchronously, so must use promise proxies.
var deferred = {};
deferred.promise = this.store.find('user').then(function (users) {
deferred.promise = this.store.find('user', {limit: 'all'}).then(function (users) {
return users.rejectBy('id', 'me');
}).then(function (users) {
return users.filter(function (user) {