summaryrefslogtreecommitdiff
path: root/src/server/web/manifest.ts
blob: 35d3d1b666cef090de68c744838698fab116fa27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as Koa from 'koa';
import * as manifest from '../../client/assets/manifest.json';
import * as deepcopy from 'deepcopy';
import fetchMeta from '../../misc/fetch-meta';

module.exports = async (ctx: Koa.BaseContext) => {
	const json = deepcopy(manifest);

	const instance = await fetchMeta();

	json.short_name = instance.name || 'Misskey';
	json.name = instance.name || 'Misskey';

	ctx.set('Cache-Control', 'max-age=300');
	ctx.body = json;
};