diff options
author | crupest <crupest@outlook.com> | 2021-01-07 22:13:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 22:13:24 +0800 |
commit | 05132389cd2db33ab3bdeaa2fbfae25fc8db8882 (patch) | |
tree | daaa39d8d1d72b10caaa92cb65ba1635237ef2dc /BackEnd/Timeline/Controllers/BookmarkTimelineController.cs | |
parent | 191b92a161c4fdad532dbf471f5c33f8f4a97a23 (diff) | |
parent | 0bb2cc098506963ebf9ee06ec94b43c8d388543c (diff) | |
download | timeline-05132389cd2db33ab3bdeaa2fbfae25fc8db8882.tar.gz timeline-05132389cd2db33ab3bdeaa2fbfae25fc8db8882.tar.bz2 timeline-05132389cd2db33ab3bdeaa2fbfae25fc8db8882.zip |
Merge pull request #204 from crupest/back-dev
Timeline info includes highlight and bookmark info.
Diffstat (limited to 'BackEnd/Timeline/Controllers/BookmarkTimelineController.cs')
-rw-r--r-- | BackEnd/Timeline/Controllers/BookmarkTimelineController.cs | 2 |
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>
|