about summary refs log tree commit diff
path: root/web
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-07-28T01·27-0400
committerglittershark <grfn@gws.fyi>2020-07-28T01·35+0000
commitb2c34c4ba3ec7e8bf3110c05b31dc909c395e916 (patch)
tree9a7fb99d25d44f1b922e2834e9d9d269952e1394 /web
parent9ae4ac8f50aa9e23073d8ab1a962d750360a6cbe (diff)
fix(web/panettone): Fix reference to undefined function r/1501
I have been. Very tired.

Change-Id: Iab9d21e53630be092080cc73196da90534b06553
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1490
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'web')
-rw-r--r--web/panettone/src/panettone.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/panettone/src/panettone.lisp b/web/panettone/src/panettone.lisp
index 07285e6930..d19e3066b2 100644
--- a/web/panettone/src/panettone.lisp
+++ b/web/panettone/src/panettone.lisp
@@ -488,7 +488,7 @@ global postgresql connection (eg as initialized by
         (hunchentoot:redirect "/"))))
 
 (defroute show-issue
-    ("/issues/:id" :decorators (@auth-optional @handle/issue-not-found))
+    ("/issues/:id" :decorators (@auth-optional @handle-issue-not-found))
     (&path (id 'integer))
   (handler-case
       (let* ((issue (model:get-issue id))