FIX: grant badge dialog not working

This commit is contained in:
Sam 2015-08-19 11:51:12 +10:00
parent c20b3b85f9
commit feed822c48
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export default Ember.ArrayController.extend({
**/
grantBadge: function(badgeId) {
var self = this;
Discourse.UserBadge.grant(badgeId, this.get('user.username'), this.get('badgeReason')).then(function(userBadge) {
Discourse.UserBadge.grant(badgeId, this.get('user.model.username'), this.get('badgeReason')).then(function(userBadge) {
self.set('badgeReason', '');
self.pushObject(userBadge);
Ember.run.next(function() {