about summary refs log tree commit diff
path: root/users/grfn/bbbg/src/bbbg/web.clj
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-12-20T01·26-0500
committerclbot <clbot@tvl.fyi>2021-12-20T01·28+0000
commit9ea538beeaa9eedfb88c69719da385f51454d764 (patch)
treeb96a40b7474459f0e7830f0bdc236828f020e492 /users/grfn/bbbg/src/bbbg/web.clj
parent4643585e01e5dc68d6a815be23017ffe396a107a (diff)
feat(grfn/bbbg): Move nav to page-global r/3315
Change-Id: I0a313d9df818fcbfeea5484123c1e7bcec439d66
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4509
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
Diffstat (limited to '')
-rw-r--r--users/grfn/bbbg/src/bbbg/web.clj2
1 files changed, 2 insertions, 0 deletions
diff --git a/users/grfn/bbbg/src/bbbg/web.clj b/users/grfn/bbbg/src/bbbg/web.clj
index 4501043e2f..2419eb23b7 100644
--- a/users/grfn/bbbg/src/bbbg/web.clj
+++ b/users/grfn/bbbg/src/bbbg/web.clj
@@ -3,6 +3,7 @@
    [bbbg.discord.auth :as discord.auth :refer [wrap-discord-auth]]
    [bbbg.handlers.attendee-checks :as attendee-checks]
    [bbbg.handlers.attendees :as attendees]
+   [bbbg.handlers.core :refer [wrap-dynamic-auth]]
    [bbbg.handlers.events :as events]
    [bbbg.handlers.home :as home]
    [bbbg.handlers.signup-form :as signup-form]
@@ -82,6 +83,7 @@
 
 (defn middleware [app env]
   (-> app
+      wrap-dynamic-auth
       (wrap-discord-auth env)
       wrap-keyword-params
       wrap-params