aboutsummaryrefslogtreecommitdiff
path: root/route/routes/admin.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/admin.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/admin.go')
-rw-r--r--route/routes/admin.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/route/routes/admin.go b/route/routes/admin.go
index dfa7313..c092b84 100644
--- a/route/routes/admin.go
+++ b/route/routes/admin.go
@@ -205,18 +205,6 @@ func AdminAddBoard(ctx *fiber.Ctx) error {
return ctx.Redirect("/"+config.Key, http.StatusSeeOther)
}
-func AdminPostNews(c *fiber.Ctx) error {
- // STUB
-
- return c.SendString("admin post news")
-}
-
-func AdminNewsDelete(c *fiber.Ctx) error {
- // STUB
-
- return c.SendString("admin news delete")
-}
-
func AdminActorIndex(ctx *fiber.Ctx) error {
actor, _ := webfinger.GetActorFromPath(ctx.Path(), "/"+config.Key+"/")