Implement updating of channels

This commit is contained in:
eikendev 2020-08-03 11:18:46 +02:00
parent a5418d9698
commit 9a65fb4356
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694
5 changed files with 102 additions and 34 deletions

View file

@ -25,7 +25,7 @@ func Create(debug bool, cm *credentials.Manager, db *database.Database, dp *disp
applicationHandler := api.ApplicationHandler{DB: db, DP: dp}
notificationHandler := api.NotificationHandler{DB: db, DP: dp}
userHandler := api.UserHandler{CM: cm, DB: db, DP: dp}
userHandler := api.UserHandler{AH: &applicationHandler, CM: cm, DB: db, DP: dp}
r := gin.Default()