Don't display system badges in the admin badges interface.
This commit is contained in:
parent
215e42053a
commit
8fe8e66280
|
@ -1,7 +1,11 @@
|
||||||
Discourse.AdminBadgesRoute = Discourse.Route.extend({
|
Discourse.AdminBadgesRoute = Discourse.Route.extend({
|
||||||
|
|
||||||
model: function() {
|
model: function() {
|
||||||
return Discourse.Badge.findAll();
|
return Discourse.Badge.findAll().then(function(badges) {
|
||||||
|
return badges.filter(function(badge) {
|
||||||
|
return badge.id >= 100;
|
||||||
|
});
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
setupController: function(controller, model) {
|
setupController: function(controller, model) {
|
||||||
|
|
Loading…
Reference in New Issue