Make discussion edit permission specific to renaming

This commit is contained in:
Toby Zerner
2015-05-18 12:34:03 +09:30
parent 50ea261c47
commit 7f48a98af8
3 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ export default function(app) {
items.add('separator', Separator.component());
}
if (this.canEdit()) {
if (this.canRename()) {
items.add('rename', ActionButton.component({ icon: 'pencil', label: 'Rename', onclick: this.renameAction.bind(this) }));
}

View File

@ -30,7 +30,7 @@ Discussion.prototype.lastPost = Model.one('lastPost');
Discussion.prototype.lastPostNumber = Model.prop('lastPostNumber');
Discussion.prototype.canReply = Model.prop('canReply');
Discussion.prototype.canEdit = Model.prop('canEdit');
Discussion.prototype.canRename = Model.prop('canRename');
Discussion.prototype.canDelete = Model.prop('canDelete');
Discussion.prototype.commentsCount = Model.prop('commentsCount');