1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 08:27:42 +02:00

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) }));
}