From efdc8dc21571c3737662a9f49761961fe1068ead Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Wed, 17 Dec 2025 05:01:05 -0500 Subject: Delete cards from Redis --- fig-web/src/Fig/Web/Utils.hs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fig-web/src/Fig/Web/Utils.hs') diff --git a/fig-web/src/Fig/Web/Utils.hs b/fig-web/src/Fig/Web/Utils.hs index 9337b12..59781cd 100644 --- a/fig-web/src/Fig/Web/Utils.hs +++ b/fig-web/src/Fig/Web/Utils.hs @@ -54,6 +54,7 @@ instance Exception FigWebException data Config = Config { port :: !Int , assetPath :: !FilePath + , dataPath :: !FilePath , clientId :: !Text , authToken :: !Text , dbHost :: !Text @@ -67,6 +68,7 @@ configCodec :: Toml.TomlCodec Config configCodec = do port <- Toml.int "port" Toml..= (\a -> a.port) assetPath <- Toml.string "asset_path" Toml..= (\a -> a.assetPath) + dataPath <- Toml.string "data_path" Toml..= (\a -> a.dataPath) clientId <- Toml.text "client_id" Toml..= (\a -> a.clientId) authToken <- Toml.text "auth_token" Toml..= (\a -> a.authToken) dbHost <- Toml.text "db_host" Toml..= (\a -> a.dbHost) -- cgit v1.2.3