85ac38cc48
fixes https://github.com/TryGhost/Team/issues/2590 Added a new route that only shows mentions for a given post. Reuses the same controller and template.
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
import MentionsRoute from '../mentions';
|
|
|
|
export default class PostsMentionsRoute extends MentionsRoute {
|
|
controllerName = 'mentions';
|
|
templateName = 'mentions';
|
|
}
|