mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
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';
|
|
}
|