UI for Deleting a Blog

Closes #418
This commit is contained in:
Torsten Grote
2016-06-20 15:50:02 -03:00
parent 761525ad85
commit e0d2d09bdd
6 changed files with 78 additions and 0 deletions

View File

@@ -22,6 +22,8 @@ public interface BlogController extends ActivityLifecycleController {
@Nullable
MessageId getBlogPostId(int position);
void deleteBlog(final UiResultHandler<Boolean> resultHandler);
interface BlogPostListener {
void onBlogPostAdded(final BlogPostItem post, final boolean local);
}