Filter own entries in calendar

This commit is contained in:
2017-12-03 19:08:05 +01:00
parent e1277fa734
commit 46e5eb1f33
5 changed files with 29 additions and 6 deletions

View File

@ -5,6 +5,7 @@ import "github.com/animenotifier/arn"
// CalendarDay is a calendar day.
type CalendarDay struct {
Name string
Class string
Entries []*CalendarEntry
}
@ -12,5 +13,5 @@ type CalendarDay struct {
type CalendarEntry struct {
Anime *arn.Anime
Episode *arn.AnimeEpisode
Class string
Added bool
}