FIX: PM title not editable

This commit is contained in:
Sam 2014-11-21 11:08:20 +11:00
parent 0cbfb43adb
commit 508efe3029
1 changed files with 7 additions and 1 deletions

View File

@ -207,9 +207,15 @@ Discourse.Topic = Discourse.Model.extend({
// Don't save unless we can
if (!this.get('details.can_edit')) return;
var data = { title: this.get('title') };
if(this.get('category')){
data.category_id = this.get('category.id');
}
return Discourse.ajax(this.get('url'), {
type: 'PUT',
data: { title: this.get('title'), category_id: this.get('category.id') }
data: data
});
},