]> Untitled Git - lemmy-ui.git/blob - src/server/handlers/themes-list-handler.ts
Disallow /modlog since it is not relevant for bots (#1850)
[lemmy-ui.git] / src / server / handlers / themes-list-handler.ts
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").send(JSON.stringify(await buildThemeList()));
6 };