Ghost/ghost/admin/app/controllers/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

12 lines
240 B
JavaScript

import Controller from '@ember/controller';
export default class MentionsController extends Controller {
get mentionsInfinityModel() {
return this.model.mentions;
}
get post() {
return this.model.post;
}
}