mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 18:34:39 +03:00
Show all authors in post settings menu
Closes #4016 - Added 'limit=all' to API query to retrieve all users.
This commit is contained in:
parent
f05d2fad01
commit
ec59a7a85c
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user