feat(forums): admin/Moderators and topic owner can edit topic title when click on the title text

#20
This commit is contained in:
OldHawk
2017-12-07 17:47:05 +08:00
parent 7c1c1558dd
commit c38b35b707
11 changed files with 184 additions and 4 deletions

View File

@@ -189,6 +189,21 @@
}
};
/**
* onTopicTitleEdited
*/
$scope.onTopicTitleEdited = function (modifyed) {
console.log(modifyed);
if (vm.topic && modifyed) {
vm.topic.$update(function (res) {
vm.topic = res;
NotifycationService.showSuccessNotify('FORUMS.TOPIC_EDIT_SUCCESSFULLY');
}, function (res) {
NotifycationService.showErrorNotify(res.data.message, 'FORUMS.TOPIC_EDIT_FAILED');
});
}
};
/**
* beginEditTopic
* @param t