From 3df5042744b7e611e10110ea397bfadba83d6393 Mon Sep 17 00:00:00 2001 From: Francesco Date: Wed, 11 Oct 2023 16:21:07 +0200 Subject: [PATCH] Documentation --- docs/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index a6cf532..ebebbf1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -313,7 +313,7 @@ public class Product { ... }

3.2 The Settings panel

As mentioned earlier, the Settings panel primarily provides options to customize the branding/appearance of the web interface. These settings are persistent across restarts and are stored in an embedded H2 database (file named dbadmin_internal), along with other data required by Spring Boot Database Admin.

-

4. Security

+

4. Security

Spring Boot Database Admin does not implement authentication and/or authorization mechanisms. However, you can use a standard Spring security configuration in order to limit access to the web UI or specific parts of it.

All Spring Boot Database Admin routes start with the value of dbadmin.baseUrl property, and all write operations (edit, create, delete) are implemented as POST calls. The following code provides an example security configuration (assuming Spring Boot Database Admin runs at /admin):

@@ -334,7 +334,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { } -
+