af3258dc79 の一部を取り込む (#94)

This commit is contained in:
riku6460 2023-07-02 20:32:40 +09:00 committed by GitHub
parent 59b1064fad
commit 680f367924
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 3 deletions

View file

@ -168,11 +168,14 @@ export class ServerService implements OnApplicationShutdown {
});
fastify.get<{ Params: { x: string } }>('/identicon/:x', async (request, reply) => {
/*
const [temp, cleanup] = await createTemp();
await genIdenticon(request.params.x, fs.createWriteStream(temp));
reply.header('Content-Type', 'image/png');
reply.header('Cache-Control', 'public, max-age=86400');
return fs.createReadStream(temp).on('close', () => cleanup());
*/
return reply.redirect('/static-assets/avatar.png');
});
fastify.get<{ Params: { code: string } }>('/verify-email/:code', async (request, reply) => {