From a38a5124060e0ab519025f172e92f90c4e344a62 Mon Sep 17 00:00:00 2001 From: bidi Date: Mon, 24 Aug 2026 14:19:45 +0300 Subject: [PATCH 1/2] updated promptwatch script Signed-off-by: bidi --- config/autoload/local.php.dist | 7 +++++-- src/App/templates/layout/default.html.twig | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/config/autoload/local.php.dist b/config/autoload/local.php.dist index bc9f9225..2e375018 100644 --- a/config/autoload/local.php.dist +++ b/config/autoload/local.php.dist @@ -29,8 +29,8 @@ $org = 'dotkernel'; * generators take it from config, the JSON-LD templates build absolute URLs from `app.url`. */ $app = [ - 'url' => $baseUrl, - 'meta' => [ + 'url' => $baseUrl, + 'meta' => [ 'title' => 'Dotkernel | Headless Platform for modern web application', 'description' => 'Dotkernel is a Headless Platform for building modern web applications ' . 'using a collection of applications (skeletons).', @@ -41,6 +41,9 @@ $app = [ 'twitterCard' => 'summary_large_image', 'twitterSite' => '@dotkernel', ], + 'promptwatch' => [ + 'enabled' => false, + ], ]; return [ diff --git a/src/App/templates/layout/default.html.twig b/src/App/templates/layout/default.html.twig index 8b774e19..d0c719da 100644 --- a/src/App/templates/layout/default.html.twig +++ b/src/App/templates/layout/default.html.twig @@ -141,6 +141,7 @@ {% block javascript %}{% endblock %} +{% if app.promptwatch.enabled %} +{% endif %} From 0e28df4445a1ff9ef3ea7d77bea165bdf64390ca Mon Sep 17 00:00:00 2001 From: bidi Date: Mon, 24 Aug 2026 14:48:31 +0300 Subject: [PATCH 2/2] linting fixes Signed-off-by: bidi --- config/autoload/local.php.dist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/autoload/local.php.dist b/config/autoload/local.php.dist index 2e375018..df546a1d 100644 --- a/config/autoload/local.php.dist +++ b/config/autoload/local.php.dist @@ -29,8 +29,8 @@ $org = 'dotkernel'; * generators take it from config, the JSON-LD templates build absolute URLs from `app.url`. */ $app = [ - 'url' => $baseUrl, - 'meta' => [ + 'url' => $baseUrl, + 'meta' => [ 'title' => 'Dotkernel | Headless Platform for modern web application', 'description' => 'Dotkernel is a Headless Platform for building modern web applications ' . 'using a collection of applications (skeletons).',