mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +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.
12 lines
240 B
JavaScript
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;
|
|
}
|
|
}
|