mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-03 09:32:31 +00:00
No sticker packs are available for use yet, but we now have the latent ability to send and receive.
19 lines
448 B
Java
19 lines
448 B
Java
package org.thoughtcrime.securesms.stickers;
|
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
/**
|
|
* Maintains a list of "blessed" sticker packs that essentially serve as defaults.
|
|
*/
|
|
public final class BlessedPacks {
|
|
|
|
private static final Set<String> BLESSED_PACK_IDS = new HashSet<>();
|
|
|
|
public static boolean contains(@NonNull String packId) {
|
|
return BLESSED_PACK_IDS.contains(packId);
|
|
}
|
|
}
|