diff of 79693706a2cc5e64cf4e7b5463d4036e279278e9
79693706a2cc5e64cf4e7b5463d4036e279278e9
diff --git a/src/routes/post-routes.lisp b/src/routes/post-routes.lisp
index d8c7597..ac2931d 100644
--- a/src/routes/post-routes.lisp
+++ b/src/routes/post-routes.lisp
@@ -13,7 +13,11 @@
:decorators (@json @transaction)) ()
(let ((titles (get-titles-by-year)))
(stringify titles)))
-
+
+(defroute manager-title-routes ("/api/posts/all-titles" :method :get
+ :decorators (@json @transaction)) ()
+ (let ((titles (get-titles-by-year :allow-hidden? t)))
+ (stringify titles)))
(defroute get-page-route ("/api/posts/page/:page/page-size/:page-size" :method :get
:decorators (@json @transaction))