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:
commit
2da501fff4
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ var PostSettingsMenuController = Ember.ObjectController.extend({
|
||||||
//Loaded asynchronously, so must use promise proxies.
|
//Loaded asynchronously, so must use promise proxies.
|
||||||
var deferred = {};
|
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');
|
return users.rejectBy('id', 'me');
|
||||||
}).then(function (users) {
|
}).then(function (users) {
|
||||||
return users.filter(function (user) {
|
return users.filter(function (user) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue