mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-09-22 08:30:42 +02:00
This commit is contained in:
parent
acfe78a1d2
commit
1c4c0c5192
3 changed files with 19 additions and 0 deletions
|
@ -122,3 +122,11 @@ func createRiffDeck(c *gin.Context) {
|
|||
return
|
||||
}
|
||||
}
|
||||
|
||||
func getRiffDecks(c *gin.Context) {
|
||||
ret := gulu.Ret.NewResult()
|
||||
defer c.JSON(http.StatusOK, ret)
|
||||
|
||||
decks := model.GetDecks()
|
||||
ret.Data = decks
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue