feat: add workspace secrets ui

This commit is contained in:
a.tolmachev
2026-04-07 10:06:49 +03:00
parent da94d308de
commit 341496e314
17 changed files with 961 additions and 7 deletions
+8
View File
@@ -26,6 +26,10 @@ server {
try_files /html/api-keys.html =404;
}
location = /secrets {
try_files /html/secrets.html =404;
}
location = /logs {
try_files /html/logs.html =404;
}
@@ -75,6 +79,10 @@ server {
return 302 /api-keys;
}
location = /html/secrets.html {
return 302 /secrets;
}
location = /html/logs.html {
return 302 /logs;
}