backend: refactor server/nodeinfo.ts #221
1 changed files with 2 additions and 4 deletions
|
@ -109,17 +109,15 @@ const nodeinfo2 = async (): Promise<NodeInfo2Base> => {
|
|||
};
|
||||
};
|
||||
|
||||
const cache = new Cache<NodeInfo2Base>(10 * MINUTE);
|
||||
|
||||
router.get(nodeinfo2_1path, async ctx => {
|
||||
const base = await cache.fetch(null, () => nodeinfo2());
|
||||
const base = await nodeinfo2();
|
||||
|
||||
ctx.body = { version: '2.1', ...base };
|
||||
ctx.set('Cache-Control', 'public, max-age=600');
|
||||
});
|
||||
|
||||
router.get(nodeinfo2_0path, async ctx => {
|
||||
const base = await cache.fetch(null, () => nodeinfo2());
|
||||
const base = await nodeinfo2();
|
||||
|
||||
delete base.software.repository;
|
||||
|
||||
|
|
Loading…
Reference in a new issue