aboutsummaryrefslogtreecommitdiff
path: root/main.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 /main.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 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 7e25243..aa2faf7 100644
--- a/main.go
+++ b/main.go
@@ -63,8 +63,8 @@ func main() {
app.All("/"+config.Key+"/", routes.AdminIndex)
app.Get("/"+config.Key+"/follow", routes.AdminFollow)
app.Post("/"+config.Key+"/addboard", routes.AdminAddBoard)
- app.Get("/"+config.Key+"/postnews", routes.AdminPostNews)
- app.Get("/"+config.Key+"/newsdelete", routes.AdminNewsDelete)
+ app.Get("/"+config.Key+"/newspost", routes.NewsPost)
+ app.Get("/"+config.Key+"/newsdelete", routes.NewsDelete)
app.All("/"+config.Key+"/:actor/follow", routes.AdminFollow)
app.Get("/"+config.Key+"/:actor", routes.AdminActorIndex)