Add notification settings to debuglogs.

This commit is contained in:
Greyson Parrelli
2021-02-18 13:14:40 -05:00
committed by Cody Henthorne
parent f2ea13a142
commit f8dde57133
3 changed files with 75 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
package org.thoughtcrime.securesms.preferences.widgets;
import androidx.annotation.NonNull;
public class NotificationPrivacyPreference {
private final String preference;
@@ -16,4 +18,8 @@ public class NotificationPrivacyPreference {
return "all".equals(preference);
}
@Override
public @NonNull String toString() {
return preference;
}
}