mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
Added recent posts component in dashboard 5
refs https://github.com/TryGhost/Team/issues/1448
This commit is contained in:
parent
1fc31fa60d
commit
abcfcbb3ed
@ -69,7 +69,7 @@
|
|||||||
<h3>Recent posts</h3>
|
<h3>Recent posts</h3>
|
||||||
</div>
|
</div>
|
||||||
<article class="gh-dashboard5-box">
|
<article class="gh-dashboard5-box">
|
||||||
<!-- TODO: insert module -->
|
<Dashboard::V5::RecentPosts />
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
1
ghost/admin/app/components/dashboard/v5/recent-posts.hbs
Normal file
1
ghost/admin/app/components/dashboard/v5/recent-posts.hbs
Normal file
@ -0,0 +1 @@
|
|||||||
|
Recent posts WIP
|
6
ghost/admin/app/components/dashboard/v5/recent-posts.js
Normal file
6
ghost/admin/app/components/dashboard/v5/recent-posts.js
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import Component from '@glimmer/component';
|
||||||
|
import {inject as service} from '@ember/service';
|
||||||
|
|
||||||
|
export default class RecentPosts extends Component {
|
||||||
|
@service dashboardStats;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user