mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
[Route] GET /guilds/template/:code
fixed
This commit is contained in:
parent
659b8070d0
commit
cdd56ff3b7
@ -75,21 +75,6 @@ router.delete("/:template_id", async (req: Request, res: Response) => {
|
|||||||
res.send("Deleted");
|
res.send("Deleted");
|
||||||
});
|
});
|
||||||
|
|
||||||
router.get("/:template_id", async (req: Request, res: Response) => {
|
|
||||||
|
|
||||||
const guild_id = req.params.guild_id;
|
|
||||||
const { template_id } = req.params;
|
|
||||||
|
|
||||||
const guild = await GuildModel.findOne({ id: guild_id }, { id: true }).exec();
|
|
||||||
if (!guild) throw new HTTPError("Guild not found", 404);
|
|
||||||
if (!template_id) throw new HTTPError("Unknown template_id", 404);
|
|
||||||
|
|
||||||
const template = await TemplateModel.findById({ _id: template_id }).exec();
|
|
||||||
if (!template) throw new HTTPError("template not found", 404);
|
|
||||||
|
|
||||||
res.json(toObject(template)).send();
|
|
||||||
});
|
|
||||||
|
|
||||||
router.put("/:template_id", async (req: Request, res: Response) => {
|
router.put("/:template_id", async (req: Request, res: Response) => {
|
||||||
|
|
||||||
const guild_id = req.params.guild_id;
|
const guild_id = req.params.guild_id;
|
||||||
|
@ -1,4 +1,25 @@
|
|||||||
import { Router } from "express";
|
import { Request, Response, Router } from "express";
|
||||||
const router: Router = Router();
|
const router: Router = Router();
|
||||||
|
import { TemplateModel, GuildModel, getPermission, toObject, UserModel } from "@fosscord/server-util";
|
||||||
|
import { HTTPError } from "lambert-server";
|
||||||
|
import { TemplateCreateSchema } from "../../../schema/Template";
|
||||||
|
import { emitEvent } from "../../../util/Event";
|
||||||
|
import { check } from "../../../util/instanceOf";
|
||||||
|
import { getPublicUser } from "../../../util/User";
|
||||||
|
|
||||||
|
router.get("/:template_id", async (req: Request, res: Response) => {
|
||||||
|
|
||||||
|
const guild_id = req.params.guild_id;
|
||||||
|
const { template_id } = req.params;
|
||||||
|
|
||||||
|
const guild = await GuildModel.findOne({ id: guild_id }, { id: true }).exec();
|
||||||
|
if (!guild) throw new HTTPError("Guild not found", 404);
|
||||||
|
if (!template_id) throw new HTTPError("Unknown template_id", 404);
|
||||||
|
|
||||||
|
const template = await TemplateModel.findById({ _id: template_id }).exec();
|
||||||
|
if (!template) throw new HTTPError("template not found", 404);
|
||||||
|
|
||||||
|
res.json(toObject(template)).send();
|
||||||
|
});
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
|
Loading…
Reference in New Issue
Block a user