aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-05-05 16:18:33 +0800
committercrupest <crupest@outlook.com>2021-05-05 16:18:33 +0800
commite110f4a41bd711192af28874f71f031a130f0b84 (patch)
tree08610c5476549edfbe8e9a2605b8876e026d89f5 /BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
parent2a4b59c05236028ed1dc8304327b1ef484a376db (diff)
downloadtimeline-e110f4a41bd711192af28874f71f031a130f0b84.tar.gz
timeline-e110f4a41bd711192af28874f71f031a130f0b84.tar.bz2
timeline-e110f4a41bd711192af28874f71f031a130f0b84.zip
refactor: ...
Diffstat (limited to 'BackEnd/Timeline/Controllers/BookmarkTimelineController.cs')
-rw-r--r--BackEnd/Timeline/Controllers/BookmarkTimelineController.cs13
1 files changed, 3 insertions, 10 deletions
diff --git a/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs b/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
index bfbf82f3..551a41e2 100644
--- a/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
+++ b/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
@@ -92,16 +92,9 @@ namespace Timeline.Controllers
[ProducesResponseType(401)]
public async Task<ActionResult> Move([FromBody] HttpBookmarkTimelineMoveRequest request)
{
- try
- {
- var timelineId = await _timelineService.GetTimelineIdByNameAsync(request.Timeline);
- await _service.MoveBookmarkAsync(GetUserId(), timelineId, request.NewPosition!.Value);
- return Ok();
- }
- catch (InvalidBookmarkException)
- {
- return BadRequest(new CommonResponse(ErrorCodes.BookmarkTimelineController.NonBookmark, "You can't move a non-bookmark timeline."));
- }
+ var timelineId = await _timelineService.GetTimelineIdByNameAsync(request.Timeline);
+ await _service.MoveBookmarkAsync(GetUserId(), timelineId, request.NewPosition!.Value);
+ return OkWithCommonResponse();
}
}
}