Remove unused notification component

This commit is contained in:
Toby Zerner 2015-10-22 11:14:11 +10:30
parent 5cef24a4af
commit 50e838e990

View File

@ -1,17 +0,0 @@
import Notification from 'flarum/components/Notification';
export default class DiscussionStickiedNotification extends Notification {
icon() {
return 'thumb-tack';
}
href() {
const notification = this.props.notification;
return app.route.discussion(notification.subject(), notification.content().postNumber);
}
content() {
return '{username} stickied';
}
}