feat(backend): update webhooks and DAV service

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-06-18 16:26:45 +01:00
co-authored by Sisyphus
parent cd12317ff7
commit bc6a5461c1
4 changed files with 254 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ func init() {
func connect() error {
dsn := fmt.Sprintf(
"postgres://%s:%s@localhost:5432/%s?sslmode=disable",
"postgres://%s:%s@localhost:5432/%s?sslmode=disable&require_auth=scram-sha-256",
getEnv("POSTGRES_USER"),
getEnv("POSTGRES_PASSWORD"),
getEnv("POSTGRES_DB"),
+1 -1
View File
@@ -26,7 +26,7 @@ func init() {
func connect() error {
dsn := fmt.Sprintf(
"postgres://%s:%s@%s:5432/%s",
"postgres://%s:%s@%s:5432/%s?require_auth=scram-sha-256",
getEnv("POSTGRES_USER"),
getEnv("POSTGRES_PASSWORD"),
getEnv("POSTGRES_HOST"),