aboutsummaryrefslogtreecommitdiff
path: root/route/routes/boardmgmt.go
diff options
context:
space:
mode:
authorFChannel <>2022-06-04 15:34:45 -0700
committerFChannel <>2022-06-19 12:53:29 -0700
commit5ee6d0a7bb85d7f28fe4f838150c17ecb6a9d1b7 (patch)
tree34eb764abc6c5a1a8dbcaa17c2c3e94e782003c0 /route/routes/boardmgmt.go
parent0b97866be3a15f64170673af9813b39cbc585db5 (diff)
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
Diffstat (limited to 'route/routes/boardmgmt.go')
-rw-r--r--route/routes/boardmgmt.go5
1 files changed, 5 insertions, 0 deletions
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")
}