1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-12 13:48:35 +02:00

changed order for feature toggles.

This commit is contained in:
ivaosthu 2014-12-10 17:13:26 +01:00 committed by Ivar Conradi Østhus
parent 08c2614f80
commit c2a809a819

View File

@ -25,7 +25,7 @@ function getFeatures() {
return knex return knex
.select(FEATURE_COLUMNS) .select(FEATURE_COLUMNS)
.from('features') .from('features')
.orderBy('created_at', 'desc') .orderBy('name', 'asc')
.map(rowToFeature); .map(rowToFeature);
} }