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

module.exports = async (ctx: Koa.Context) => {
	const json = JSON.parse(JSON.stringify(manifest));

	const instance = await fetchMeta(true);

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

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