1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-15 17:50:48 +02:00

feat: persist client application usage

Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
andreas-unleash 2023-08-21 12:21:02 +03:00
parent d66a08a7db
commit 4c83c7700a
No known key found for this signature in database
GPG Key ID: DB82A1577B38F66B

View File

@ -111,7 +111,7 @@ export default class ClientApplicationsStore
async getAll(): Promise<IClientApplication[]> { async getAll(): Promise<IClientApplication[]> {
const rows = await this.db const rows = await this.db
.select(COLUMNS) .select(COLUMNS)
.from('TABLE') .from(TABLE)
.orderBy('app_name', 'asc'); .orderBy('app_name', 'asc');
return rows.map(mapRow); return rows.map(mapRow);