Added javadoc comments to showBlockStatus method

This commit is contained in:
Sean Nemann 2018-05-31 13:37:55 -04:00
parent fcfae643c3
commit 4aac81d627

View file

@ -53,6 +53,10 @@ public abstract class AuthenticatedActivity extends NavigationBaseActivity {
protected abstract void onAuthFailure();
/**
* Makes API call to check if user is blocked. If the user is blocked, a snackbar
* is created to notify the user
*/
protected void showBlockStatus()
{
Observable.fromCallable(() -> mediaWikiApi.isUserBlocked())