Change the default db-channel-enabled config value from False to True (#1880)
This commit is contained in:
@@ -160,7 +160,7 @@ exampleConfigFile =
|
|||||||
|db-channel = "pgrst"
|
|db-channel = "pgrst"
|
||||||
|
|
|
|
||||||
|## Enable or disable the notification channel
|
|## Enable or disable the notification channel
|
||||||
|db-channel-enabled = false
|
|db-channel-enabled = true
|
||||||
|
|
|
|
||||||
|## Enable in-database configuration
|
|## Enable in-database configuration
|
||||||
|db-config = true
|
|db-config = true
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ parser optPath env dbSettings =
|
|||||||
<$> parseAppSettings "app.settings"
|
<$> parseAppSettings "app.settings"
|
||||||
<*> reqString "db-anon-role"
|
<*> reqString "db-anon-role"
|
||||||
<*> (fromMaybe "pgrst" <$> optString "db-channel")
|
<*> (fromMaybe "pgrst" <$> optString "db-channel")
|
||||||
<*> (fromMaybe False <$> optBool "db-channel-enabled")
|
<*> (fromMaybe True <$> optBool "db-channel-enabled")
|
||||||
<*> (maybe ["public"] splitOnCommas <$> optValue "db-extra-search-path")
|
<*> (maybe ["public"] splitOnCommas <$> optValue "db-extra-search-path")
|
||||||
<*> optWithAlias (optInt "db-max-rows")
|
<*> optWithAlias (optInt "db-max-rows")
|
||||||
(optInt "max-rows")
|
(optInt "max-rows")
|
||||||
|
|||||||
+1
-1
@@ -76,7 +76,7 @@ _baseCfg = let secret = Just $ encodeUtf8 "reallyreallyreallyreallyverysafe" in
|
|||||||
configAppSettings = [ ("app.settings.app_host", "localhost") , ("app.settings.external_api_secret", "0123456789abcdef") ]
|
configAppSettings = [ ("app.settings.app_host", "localhost") , ("app.settings.external_api_secret", "0123456789abcdef") ]
|
||||||
, configDbAnonRole = "postgrest_test_anonymous"
|
, configDbAnonRole = "postgrest_test_anonymous"
|
||||||
, configDbChannel = mempty
|
, configDbChannel = mempty
|
||||||
, configDbChannelEnabled = False
|
, configDbChannelEnabled = True
|
||||||
, configDbExtraSearchPath = []
|
, configDbExtraSearchPath = []
|
||||||
, configDbMaxRows = Nothing
|
, configDbMaxRows = Nothing
|
||||||
, configDbPoolSize = 10
|
, configDbPoolSize = 10
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
db-anon-role = "required"
|
db-anon-role = "required"
|
||||||
db-channel = "pgrst"
|
db-channel = "pgrst"
|
||||||
db-channel-enabled = false
|
db-channel-enabled = true
|
||||||
db-extra-search-path = "public"
|
db-extra-search-path = "public"
|
||||||
db-max-rows = 1000
|
db-max-rows = 1000
|
||||||
db-pool = 10
|
db-pool = 10
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
db-anon-role = "required"
|
db-anon-role = "required"
|
||||||
db-channel = "pgrst"
|
db-channel = "pgrst"
|
||||||
db-channel-enabled = false
|
db-channel-enabled = true
|
||||||
db-extra-search-path = "public"
|
db-extra-search-path = "public"
|
||||||
db-max-rows = ""
|
db-max-rows = ""
|
||||||
db-pool = 10
|
db-pool = 10
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
db-anon-role = "postgrest_test_anonymous"
|
db-anon-role = "postgrest_test_anonymous"
|
||||||
db-channel = "postgrest"
|
db-channel = "postgrest"
|
||||||
db-channel-enabled = true
|
db-channel-enabled = false
|
||||||
db-extra-search-path = "public,extensions,other"
|
db-extra-search-path = "public,extensions,other"
|
||||||
db-max-rows = 100
|
db-max-rows = 100
|
||||||
db-pool = 1
|
db-pool = 1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
db-anon-role = "postgrest_test_anonymous"
|
db-anon-role = "postgrest_test_anonymous"
|
||||||
db-channel = "postgrest"
|
db-channel = "postgrest"
|
||||||
db-channel-enabled = true
|
db-channel-enabled = false
|
||||||
db-extra-search-path = "public,extensions,private"
|
db-extra-search-path = "public,extensions,private"
|
||||||
db-max-rows = 1000
|
db-max-rows = 1000
|
||||||
db-pool = 1
|
db-pool = 1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
db-anon-role = "root"
|
db-anon-role = "root"
|
||||||
db-channel = "postgrest"
|
db-channel = "postgrest"
|
||||||
db-channel-enabled = true
|
db-channel-enabled = false
|
||||||
db-extra-search-path = "public,test"
|
db-extra-search-path = "public,test"
|
||||||
db-max-rows = 1000
|
db-max-rows = 1000
|
||||||
db-pool = 1
|
db-pool = 1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
db-anon-role = "required"
|
db-anon-role = "required"
|
||||||
db-channel = "pgrst"
|
db-channel = "pgrst"
|
||||||
db-channel-enabled = false
|
db-channel-enabled = true
|
||||||
db-extra-search-path = "public"
|
db-extra-search-path = "public"
|
||||||
db-max-rows = ""
|
db-max-rows = ""
|
||||||
db-pool = 10
|
db-pool = 10
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ PGRST_APP_SETTINGS_test2: test
|
|||||||
PGRST_APP_SETTINGS_test: test
|
PGRST_APP_SETTINGS_test: test
|
||||||
PGRST_DB_ANON_ROLE: root
|
PGRST_DB_ANON_ROLE: root
|
||||||
PGRST_DB_CHANNEL: postgrest
|
PGRST_DB_CHANNEL: postgrest
|
||||||
PGRST_DB_CHANNEL_ENABLED: true
|
PGRST_DB_CHANNEL_ENABLED: false
|
||||||
PGRST_DB_EXTRA_SEARCH_PATH: public, test
|
PGRST_DB_EXTRA_SEARCH_PATH: public, test
|
||||||
PGRST_DB_MAX_ROWS: 1000
|
PGRST_DB_MAX_ROWS: 1000
|
||||||
PGRST_DB_POOL: 1
|
PGRST_DB_POOL: 1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
db-anon-role = "root"
|
db-anon-role = "root"
|
||||||
db-channel = "postgrest"
|
db-channel = "postgrest"
|
||||||
db-channel-enabled = true
|
db-channel-enabled = false
|
||||||
db-extra-search-path = "public, test"
|
db-extra-search-path = "public, test"
|
||||||
db-max-rows = 1000
|
db-max-rows = 1000
|
||||||
db-pool = 1
|
db-pool = 1
|
||||||
|
|||||||
Reference in New Issue
Block a user