From 9826b53035477ea2f35920a675cd95ad63e9239f Mon Sep 17 00:00:00 2001 From: valentinkolb Date: Mon, 17 Jun 2024 18:13:41 +0200 Subject: [PATCH] feat(messages): update messages to handle multiple recipients --- main/main.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/main/main.go b/main/main.go index a6d7ba7..2b2e544 100644 --- a/main/main.go +++ b/main/main.go @@ -2,7 +2,6 @@ package main import ( "git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/ldapApi" - "git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/ldapSync" "git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger" "git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/messages" "git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/qrApi" @@ -24,9 +23,9 @@ func main() { app := pocketbase.New() // setup ldap sync - app.OnBeforeServe().Add(func(e *core.ServeEvent) error { - return ldapSync.InitLdapSync(app) - }) + //app.OnBeforeServe().Add(func(e *core.ServeEvent) error { + // return ldapSync.InitLdapSync(app) + //}) // setup ldap login app.OnBeforeServe().Add(func(e *core.ServeEvent) error {