We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 653f4ad commit f318966Copy full SHA for f318966
1 file changed
examples/official-site/safety.sql
@@ -2,7 +2,10 @@ select 'http_header' as component,
2
'public, max-age=600, stale-while-revalidate=3600, stale-if-error=86400' as "Cache-Control",
3
'<https://sql-page.com/safety>; rel="canonical"' as "Link";
4
5
-select 'dynamic' as component, properties FROM example WHERE component = 'shell' LIMIT 1;
+select 'dynamic' as component, json_patch(json_extract(properties, '$[0]'), json_object(
6
+ 'title', 'Security in SQLPage: SSO, protection against SQLi, XSS, CSRF, and more'
7
+)) as properties
8
+FROM example WHERE component = 'shell' LIMIT 1;
9
10
select 'hero' as component,
11
'SQLPage''s security guarantees' as title,
0 commit comments