Show notifications for new blog posts

This also adds a setting allowing people to turn blog post notifications off.

Closes #488
This commit is contained in:
Torsten Grote
2016-07-29 12:57:24 -03:00
committed by akwizgran
parent 8bbb2184ff
commit 04af39f567
9 changed files with 140 additions and 11 deletions

View File

@@ -13,7 +13,15 @@ public interface AndroidNotificationManager {
void clearForumPostNotification(GroupId g);
void showBlogPostNotification(GroupId g);
void clearBlogPostNotification();
void blockNotification(GroupId g);
void unblockNotification(GroupId g);
void blockBlogNotification();
void unblockBlogNotification();
}