mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-30 12:34:18 +01:00
Rename sandbox to staging environment
To match the upstream name
This commit is contained in:
@@ -155,7 +155,7 @@ public class App {
|
||||
final var serviceEnvironmentCli = ns.<ServiceEnvironmentCli>get("service-environment");
|
||||
final var serviceEnvironment = serviceEnvironmentCli == ServiceEnvironmentCli.LIVE
|
||||
? ServiceEnvironment.LIVE
|
||||
: ServiceEnvironment.SANDBOX;
|
||||
: ServiceEnvironment.STAGING;
|
||||
|
||||
final var trustNewIdentityCli = ns.<TrustNewIdentityCli>get("trust-new-identities");
|
||||
final var trustNewIdentity = trustNewIdentityCli == TrustNewIdentityCli.ON_FIRST_USE
|
||||
|
||||
@@ -7,7 +7,13 @@ public enum ServiceEnvironmentCli {
|
||||
return "live";
|
||||
}
|
||||
},
|
||||
SANDBOX {
|
||||
STAGING {
|
||||
@Override
|
||||
public String toString() {
|
||||
return "staging";
|
||||
}
|
||||
},
|
||||
@Deprecated SANDBOX {
|
||||
@Override
|
||||
public String toString() {
|
||||
return "sandbox";
|
||||
|
||||
Reference in New Issue
Block a user