Uniform whitespace

This commit is contained in:
Alexandre Alapetite 2025-06-01 00:58:51 +02:00
parent 589e54ae32
commit c26a0549c1
No known key found for this signature in database
GPG key ID: A24378C38E812B23
4 changed files with 511 additions and 511 deletions

View file

@ -121,15 +121,15 @@ class WebhookExtension extends Minz_Extension {
"search_in_feed" => Minz_Request::paramString("search_in_feed"),
"search_in_authors" => Minz_Request::paramString("search_in_authors"),
"search_in_content" => Minz_Request::paramString("search_in_content"),
"mark_as_read" => (bool) Minz_Request::paramString("mark_as_read"),
"ignore_updated" => (bool) Minz_Request::paramString("ignore_updated"),
"mark_as_read" => Minz_Request::paramBoolean("mark_as_read"),
"ignore_updated" => Minz_Request::paramBoolean("ignore_updated"),
"webhook_url" => Minz_Request::paramString("webhook_url"),
"webhook_method" => Minz_Request::paramString("webhook_method"),
"webhook_headers" => array_filter(Minz_Request::paramTextToArray("webhook_headers")),
"webhook_body" => html_entity_decode(Minz_Request::paramString("webhook_body")),
"webhook_body_type" => Minz_Request::paramString("webhook_body_type"),
"enable_logging" => (bool) Minz_Request::paramString("enable_logging"),
"enable_logging" => Minz_Request::paramBoolean("enable_logging"),
];
$this->setSystemConfiguration($conf);
$logsEnabled = $conf["enable_logging"];