aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-01-07 22:10:58 +0800
committercrupest <crupest@outlook.com>2021-01-07 22:10:58 +0800
commit04186d5f1091266b85758d4b4255c6a7c1b498f6 (patch)
tree2ca5678d575eae81f71220896a9862468c93fcc3 /BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
parent532c6ccd3498a0daabb3d6dbe3f0348f4b2d6a1f (diff)
downloadtimeline-04186d5f1091266b85758d4b4255c6a7c1b498f6.tar.gz
timeline-04186d5f1091266b85758d4b4255c6a7c1b498f6.tar.bz2
timeline-04186d5f1091266b85758d4b4255c6a7c1b498f6.zip
feat: Timeline info contains bookmark and highlight flag.
Diffstat (limited to 'BackEnd/Timeline/Controllers/BookmarkTimelineController.cs')
-rw-r--r--BackEnd/Timeline/Controllers/BookmarkTimelineController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs b/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
index 4313115e..16793de6 100644
--- a/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
+++ b/BackEnd/Timeline/Controllers/BookmarkTimelineController.cs
@@ -40,7 +40,7 @@ namespace Timeline.Controllers
{
var ids = await _service.GetBookmarks(this.GetUserId());
var timelines = await _timelineService.GetTimelineList(ids);
- return await _timelineMapper.MapToHttp(timelines, Url);
+ return await _timelineMapper.MapToHttp(timelines, Url, this.GetOptionalUserId());
}
/// <summary>