From 5ee6d0a7bb85d7f28fe4f838150c17ecb6a9d1b7 Mon Sep 17 00:00:00 2001 From: FChannel <> Date: Sat, 4 Jun 2022 15:34:45 -0700 Subject: last few routes marked TODO should be done with them this weekend and all things `should` be working for the fiber transition. still have to test federation locally --- route/routes/boardmgmt.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'route/routes/boardmgmt.go') diff --git a/route/routes/boardmgmt.go b/route/routes/boardmgmt.go index 368e5d1..0498c5b 100644 --- a/route/routes/boardmgmt.go +++ b/route/routes/boardmgmt.go @@ -331,22 +331,27 @@ func BoardMarkSensitive(ctx *fiber.Ctx) error { return ctx.Redirect("/"+board, http.StatusSeeOther) } +// TODO routes/BoardRemove func BoardRemove(ctx *fiber.Ctx) error { return ctx.SendString("board remove") } +// TODO routes/BoardAddToIndex func BoardAddToIndex(ctx *fiber.Ctx) error { return ctx.SendString("board add to index") } +// TODO routes/BoardPopArchive func BoardPopArchive(ctx *fiber.Ctx) error { return ctx.SendString("board pop archive") } +// TODO routes/BoardAutoSubscribe func BoardAutoSubscribe(ctx *fiber.Ctx) error { return ctx.SendString("board auto subscribe") } +// TODO routes/BoardBlacklist func BoardBlacklist(ctx *fiber.Ctx) error { return ctx.SendString("board blacklist") } -- cgit v1.2.3