|
@@ -146,5 +146,16 @@ namespace GxPress.Api.WebControllers
|
|
|
{
|
|
|
return await noteRepository.SetIsTopAsync(id);
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 获取笔记/话题草稿分页
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPost("draft-list")]
|
|
|
+ public async Task<PagedList<NoteNotFolderPageResult>> NoteTopicDraftPageListAsync(NoteSearchPageListRequest request)
|
|
|
+ {
|
|
|
+ request.UserId = _loginContext.AccountId;
|
|
|
+ return await _noteService.NoteTopicDraftPageListAsync(request);
|
|
|
+ }
|
|
|
}
|
|
|
}
|