2015-08-19 09:24:09 +08:00
|
|
|
import Badge from 'discourse/models/badge';
|
|
|
|
|
2014-10-18 02:27:40 +08:00
|
|
|
export default Discourse.Route.extend({
|
|
|
|
_json: null,
|
|
|
|
|
|
|
|
model: function() {
|
|
|
|
var self = this;
|
|
|
|
return Discourse.ajax('/admin/badges.json').then(function(json) {
|
|
|
|
self._json = json;
|
2015-08-19 09:24:09 +08:00
|
|
|
return Badge.createFromJson(json);
|
2014-10-18 02:27:40 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
setupController: function(controller, model) {
|
|
|
|
var json = this._json,
|
|
|
|
triggers = [];
|
|
|
|
|
|
|
|
_.each(json.admin_badges.triggers,function(v,k){
|
|
|
|
triggers.push({id: v, name: I18n.t('admin.badges.trigger_type.'+k)});
|
|
|
|
});
|
|
|
|
|
|
|
|
controller.setProperties({
|
|
|
|
badgeGroupings: json.badge_groupings,
|
|
|
|
badgeTypes: json.badge_types,
|
|
|
|
protectedSystemFields: json.admin_badges.protected_system_fields,
|
|
|
|
badgeTriggers: triggers,
|
|
|
|
model: model
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|