lihao 4 years ago
parent
commit
919a5e5e3c
1 changed files with 12 additions and 2 deletions
  1. 12 2
      gx_api/GxPress/Api/GxPress.Api/WebControllers/WebNoteController.cs

+ 12 - 2
gx_api/GxPress/Api/GxPress.Api/WebControllers/WebNoteController.cs

@@ -162,10 +162,20 @@ namespace GxPress.Api.WebControllers
         /// </summary>
         /// <param name="typeValue">0 笔记 1 话题本</param>
         /// <returns></returns>
-        [HttpPut("clear-draft")]
-        public async Task<bool> ClearDraftAsync([FromQuery] int typeValue)
+        [HttpPut("clear-draft/{typeValue}")]
+        public async Task<bool> ClearDraftAsync(int typeValue)
         {
             return await noteRepository.ClearDraftAsync(_loginContext.AccountId, typeValue);
         }
+        /// <summary>
+        /// 草稿删除
+        /// </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+        [HttpDelete("draft/{id}")]
+        public async Task<bool> DraftDeleteAsync(int id)
+        {
+            return await _noteService.DraftDeleteAsync(id);
+        }
     }
 }