Simpler notification filters

This commit is contained in:
Eduard Urbach 2018-03-20 19:18:30 +01:00
parent 30d9b9cdbc
commit 87e8e16d35
2 changed files with 17 additions and 11 deletions

View File

@ -115,21 +115,21 @@ component SettingsNotifications(user *arn.User)
.widget.mountable(data-api="/api/settings/" + user.ID) .widget.mountable(data-api="/api/settings/" + user.ID)
h3.widget-title h3.widget-title
Icon("filter") Icon("filter")
span General span Filter
InputBool("Notification.AnimeEpisodeReleases", user.Settings().Notification.AnimeEpisodeReleases, "New episodes", "Notifications about new episodes") InputBool("Notification.AnimeEpisodeReleases", user.Settings().Notification.AnimeEpisodeReleases, "New episodes", "Notifications about new episodes")
InputBool("Notification.AnimeFinished", user.Settings().Notification.AnimeFinished, "Finished anime series", "Notifications about finished anime series") InputBool("Notification.AnimeFinished", user.Settings().Notification.AnimeFinished, "Finished anime series", "Notifications about finished anime series")
InputBool("Notification.NewFollowers", user.Settings().Notification.NewFollowers, "New followers", "Notifications about new followers") //- InputBool("Notification.NewFollowers", user.Settings().Notification.NewFollowers, "New followers", "Notifications about new followers")
.widget.mountable(data-api="/api/settings/" + user.ID) //- .widget.mountable(data-api="/api/settings/" + user.ID)
h3.widget-title //- h3.widget-title
Icon("heart") //- Icon("heart")
span Likes //- span Likes
InputBool("Notification.ForumLikes", user.Settings().Notification.ForumLikes, "Forum post likes", "Notifications about forum post likes") //- InputBool("Notification.ForumLikes", user.Settings().Notification.ForumLikes, "Forum post likes", "Notifications about forum post likes")
InputBool("Notification.SoundTrackLikes", user.Settings().Notification.SoundTrackLikes, "Soundtrack likes", "Notifications about soundtrack likes") //- InputBool("Notification.SoundTrackLikes", user.Settings().Notification.SoundTrackLikes, "Soundtrack likes", "Notifications about soundtrack likes")
//- InputBool("Notification.GroupPostLikes", user.Settings().Notification.GroupPostLikes, "Group post likes", "Notifications about group post likes") //- //- InputBool("Notification.GroupPostLikes", user.Settings().Notification.GroupPostLikes, "Group post likes", "Notifications about group post likes")
InputBool("Notification.QuoteLikes", user.Settings().Notification.QuoteLikes, "Quote likes", "Notifications about quote likes") //- InputBool("Notification.QuoteLikes", user.Settings().Notification.QuoteLikes, "Quote likes", "Notifications about quote likes")
component SettingsApps(user *arn.User) component SettingsApps(user *arn.User)
SettingsTabs SettingsTabs

View File

@ -7,7 +7,13 @@ func main() {
for user := range arn.StreamUsers() { for user := range arn.StreamUsers() {
settings := user.Settings() settings := user.Settings()
settings.Notification = arn.DefaultNotificationSettings() defaultSettings := arn.DefaultNotificationSettings()
settings.Notification.QuoteLikes = defaultSettings.QuoteLikes
settings.Notification.SoundTrackLikes = defaultSettings.SoundTrackLikes
settings.Notification.GroupPostLikes = defaultSettings.GroupPostLikes
settings.Notification.ForumLikes = defaultSettings.ForumLikes
settings.Notification.NewFollowers = defaultSettings.NewFollowers
settings.Save() settings.Save()
} }
} }