0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Added "Recently updated" sorting option to Stories screen (#1023)

no issue
This commit is contained in:
Ben Jenkinson 2018-11-26 12:26:45 +00:00 committed by Kevin Ansfield
parent f94f7d52d9
commit 238f261ccf

View file

@ -30,6 +30,9 @@ const ORDERS = [{
}, {
name: 'Oldest',
value: 'published_at asc'
}, {
name: 'Recently updated',
value: 'updated_at desc'
}];
export default Controller.extend({