From 8c52aad913d947d09be3455efdc9360e6748ce35 Mon Sep 17 00:00:00 2001 From: nek0 Date: Mon, 24 Aug 2015 16:50:07 +0200 Subject: [PATCH] cleanup --- Application.hs | 1 - Handler/RootFeed.hs | 2 -- Settings.hs | 4 +++- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Application.hs b/Application.hs index 057853f..95839c7 100644 --- a/Application.hs +++ b/Application.hs @@ -23,7 +23,6 @@ module Application ) where import Import -import Yesod.Static import Yesod.Default.Config2 import Yesod.Default.Handlers import Database.Persist.Sql (runMigration) diff --git a/Handler/RootFeed.hs b/Handler/RootFeed.hs index e8fa45d..bca90e3 100644 --- a/Handler/RootFeed.hs +++ b/Handler/RootFeed.hs @@ -17,8 +17,6 @@ module Handler.RootFeed where import Import -import Yesod -import Yesod.Static import qualified Data.Text as T import Data.Maybe import Data.Time diff --git a/Settings.hs b/Settings.hs index 8dceee0..c12ad09 100644 --- a/Settings.hs +++ b/Settings.hs @@ -66,9 +66,11 @@ data AppSettings = AppSettings -- Example app-specific configuration values. , appCopyright :: Text -- ^ Copyright text to appear in the footer of the page + , appCopyrightLink :: Text + -- ^ Link to Copyright , appAnalytics :: Maybe Text -- ^ Google Analytics code - , appSignupBlocked :: Bool + , appSignupBlocked :: Bool -- ^ block signup site , appTos1 :: Text , appTos2 :: Text