()
| 29 | } |
| 30 | |
| 31 | func (this *LoginedController) Logout() { |
| 32 | models.NewAuth().DeleteByToken(this.Token) |
| 33 | this.Response(http.StatusOK, messageLogoutSuccess) |
| 34 | } |
| 35 | |
| 36 | func (this *LoginedController) GetBookmarks() { |
| 37 | bookId := this.getBookIdByIdentify(this.GetString("identify")) |
nothing calls this directly
no test coverage detected