Ghost/ghost/admin/app/routes/posts/mentions.js
Simon Backx 85ac38cc48 Added mentions page for a post
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.
2023-02-22 10:48:15 +01:00

7 lines
172 B
JavaScript

import MentionsRoute from '../mentions';
export default class PostsMentionsRoute extends MentionsRoute {
controllerName = 'mentions';
templateName = 'mentions';
}