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:
parent
bd1fe8fbd8
commit
46c393552a
3 changed files with 1 additions and 17 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue