mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
57bc14e00f
ref https://github.com/TryGhost/Team/issues/2421 - added the Mentions API endpoint to Admin - setup initial mention model in the Ember Store to be able to dev with the endpoint - added basic routing to access the `/mentions` page that is currently behind feature flags - Setup basic testing with a mirage mock endpoint.
11 lines
329 B
Handlebars
11 lines
329 B
Handlebars
<section class="gh-canvas">
|
|
<GhCanvasHeader class="gh-canvas-header">
|
|
<h2 class="gh-canvas-title" data-test-screen-title>
|
|
Mentions
|
|
</h2>
|
|
</GhCanvasHeader>
|
|
{{#each this.mentionsList as |mention|}}
|
|
<li>from: {{mention.source}} to {{mention.target}}</li>
|
|
{{/each}}
|
|
</section>
|