mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 08:39:22 +01:00
Allow 1:1 polls and raise character limit.
This commit is contained in:
committed by
jeffrey-signal
parent
fd635542c0
commit
f7d87f3436
@@ -1166,14 +1166,6 @@ object RemoteConfig {
|
||||
hotSwappable = true
|
||||
)
|
||||
|
||||
@JvmStatic
|
||||
@get:JvmName("polls")
|
||||
val polls: Boolean by remoteBoolean(
|
||||
key = "android.polls.2",
|
||||
defaultValue = false,
|
||||
hotSwappable = true
|
||||
)
|
||||
|
||||
/** Whether or not to send over binary service ids (alongside string service ids). */
|
||||
@JvmStatic
|
||||
@get:JvmName("useBinaryId")
|
||||
@@ -1183,14 +1175,6 @@ object RemoteConfig {
|
||||
hotSwappable = false
|
||||
)
|
||||
|
||||
@JvmStatic
|
||||
@get:JvmName("receivePolls")
|
||||
val receivePolls: Boolean by remoteBoolean(
|
||||
key = "android.receivePolls",
|
||||
defaultValue = false,
|
||||
hotSwappable = true
|
||||
)
|
||||
|
||||
@JvmStatic
|
||||
@get:JvmName("backupsBetaMegaphone")
|
||||
val backupsBetaMegaphone: Boolean by remoteBoolean(
|
||||
@@ -1238,5 +1222,16 @@ object RemoteConfig {
|
||||
defaultValue = "*:10000",
|
||||
hotSwappable = true
|
||||
)
|
||||
|
||||
/**
|
||||
* Whether or not to allow 1:1 polls and a higher character limit for questions
|
||||
*/
|
||||
@JvmStatic
|
||||
@get:JvmName("pollsV2")
|
||||
val pollsV2: Boolean by remoteBoolean(
|
||||
key = "android.pollsV2",
|
||||
defaultValue = false,
|
||||
hotSwappable = true
|
||||
)
|
||||
// endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user