|
@@ -1,3 +1,4 @@
|
|
|
+using System.Collections.Generic;
|
|
|
using System.Threading.Tasks;
|
|
|
using GxPress.Auth;
|
|
|
using GxPress.Common.Page;
|
|
@@ -139,10 +140,20 @@ namespace GxPress.Api.AppControllers
|
|
|
/// </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);
|
|
|
+ }
|
|
|
}
|
|
|
}
|