1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix strateiges format for /client/applications

This commit is contained in:
ivaosthu 2016-12-05 15:40:05 +01:00 committed by Ivar Conradi Østhus
parent a959dc777d
commit 6cdffb22d0

View File

@ -52,10 +52,10 @@ class ClientStrategyStore {
getByAppName (appName) {
return this.db
.select(COLUMNS)
.select('strategies')
.where('app_name', appName)
.from(TABLE)
.map(mapRow);
.map((row) => row.strategies);
}
};