diff options
author | crupest <crupest@outlook.com> | 2021-01-03 19:38:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 19:38:05 +0800 |
commit | d6f5cc98880b4664baf223d7147feb466e3cce5d (patch) | |
tree | ccc1167e69d7e8fcc58760e2d7de3a534150cff3 /BackEnd/Timeline/Services/BookmarkTimelineService.cs | |
parent | d25b74fa167944a7701997e34810a2ffc3c39edd (diff) | |
parent | 1b7a9096b1fd7c26a9336950a4a4b4253bcb5926 (diff) | |
download | timeline-d6f5cc98880b4664baf223d7147feb466e3cce5d.tar.gz timeline-d6f5cc98880b4664baf223d7147feb466e3cce5d.tar.bz2 timeline-d6f5cc98880b4664baf223d7147feb466e3cce5d.zip |
Merge pull request #197 from crupest/front-dev
Front: Highlight and bookmark timeline and new home page.
Diffstat (limited to 'BackEnd/Timeline/Services/BookmarkTimelineService.cs')
-rw-r--r-- | BackEnd/Timeline/Services/BookmarkTimelineService.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Services/BookmarkTimelineService.cs b/BackEnd/Timeline/Services/BookmarkTimelineService.cs index 09438193..2ec3af62 100644 --- a/BackEnd/Timeline/Services/BookmarkTimelineService.cs +++ b/BackEnd/Timeline/Services/BookmarkTimelineService.cs @@ -94,6 +94,11 @@ namespace Timeline.Services var timelineId = await _timelineService.GetTimelineIdByName(timelineName);
+ if (await _database.BookmarkTimelines.SingleOrDefaultAsync(t => t.TimelineId == timelineId) is not null)
+ {
+ return;
+ }
+
_database.BookmarkTimelines.Add(new BookmarkTimelineEntity
{
TimelineId = timelineId,
|