feat: adds new version endpoint in internal api (#3155)
Co-authored-by: Agusti Fernandez Pardo <git@agusti.me> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/3157/head
parent
3605fca9a4
commit
5ec4b7ad37
|
@ -0,0 +1,10 @@
|
||||||
|
import type { NextApiRequest, NextApiResponse } from "next";
|
||||||
|
import * as pjson from "package.json";
|
||||||
|
|
||||||
|
type Response = {
|
||||||
|
version: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default async function handler(req: NextApiRequest, res: NextApiResponse<Response>): Promise<void> {
|
||||||
|
return res.status(200).json({ version: pjson.version });
|
||||||
|
}
|
Loading…
Reference in New Issue