0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

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) {