Take out the Google Analytics stuff, since I'm not using it and I'm probably not gonna use it

This commit is contained in:
Danielle McLean 2017-10-16 22:23:50 +11:00
parent bd1fe8fbd8
commit 46c393552a
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
3 changed files with 1 additions and 17 deletions

View file

@ -58,11 +58,8 @@ data AppSettings = AppSettings
, appSkipCombining :: Bool
-- ^ Perform no stylesheet/script combining
-- Example app-specific configuration values.
, appAnalytics :: Maybe Text
-- ^ Google Analytics code
, appFacebookId :: Maybe Int
-- ^ Facebook app ID, also used for analytics.
-- ^ Facebook app ID.
, siteTitle :: Text
-- ^ Site-wide title.
@ -97,7 +94,6 @@ instance FromJSON AppSettings where
appMutableStatic <- o .:? "mutable-static" .!= defaultDev
appSkipCombining <- o .:? "skip-combining" .!= defaultDev
appAnalytics <- o .:? "analytics"
appFacebookId <- o .:? "fb-app-id"
siteTitle <- o .: "title"
siteUsername <- o .: "username"