1
0
Fork 0

add storage information route

refactor/models
Matthew 2019-11-17 18:02:48 -05:00
parent 7e2339cbc8
commit 95f78b3643
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 9 additions and 0 deletions

View File

@ -44,5 +44,14 @@ export default class Account extends Route {
this.handleError(error, res);
}
});
this.router.get('/storage', async (req: Req, res) => {
try {
const data = await this.server.client.redis.get(`storage-${req.account.username}`) ? await this.server.client.redis.get(`storage-${req.account.username}`) : null;
res.status(200).json({ code: this.constants.codes.SUCCESS, message: data });
} catch (error) {
this.handleError(error, res);
}
});
}
}