]> Untitled Git - lemmy-ui.git/blob - src/server/handlers/themes-list-handler.tsx
1a54f924e66cd62cb580e0864710713de005d270
[lemmy-ui.git] / src / server / handlers / themes-list-handler.tsx
1 import type { Response } from "express";
2 import { buildThemeList } from "../utils/build-themes-list";
3
4 export default async ({ res }: { res: Response }) => {
5   res.type("json");
6   res.send(JSON.stringify(await buildThemeList()));
7 };