From b89e3a67e2fa9c24d1a48caabda7f14682906daa Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Tue, 3 Oct 2017 20:51:01 +1100 Subject: [PATCH] Ugh. Add missing isAuthorized clause for the new keybase.txt route --- src/Foundation.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Foundation.hs b/src/Foundation.hs index 71b21a4..d51bdb5 100644 --- a/src/Foundation.hs +++ b/src/Foundation.hs @@ -131,6 +131,7 @@ instance Yesod App where isAuthorized (AuthR _) _ = return Authorized isAuthorized HomeR _ = return Authorized isAuthorized FaviconR _ = return Authorized + isAuthorized KeybaseR _ = return Authorized isAuthorized RobotsR _ = return Authorized isAuthorized (StaticR _) _ = return Authorized