This commit is contained in:
Liang Ding 2022-12-21 15:07:16 +08:00
parent 42c09e2fad
commit 29f73e1ef9
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 24 additions and 10 deletions

View file

@ -300,6 +300,7 @@ func ServeAPI(ginServer *gin.Engine) {
ginServer.Handle("POST", "/api/repo/openRepoSnapshotDoc", model.CheckAuth, openRepoSnapshotDoc)
ginServer.Handle("POST", "/api/riff/createRiffDeck", model.CheckAuth, createRiffDeck)
ginServer.Handle("POST", "/api/riff/addRiffCard", model.CheckAuth, addRiffCard)
ginServer.Handle("POST", "/api/notification/pushMsg", model.CheckAuth, pushMsg)
ginServer.Handle("POST", "/api/notification/pushErrMsg", model.CheckAuth, pushErrMsg)