Explorar el Código

sage launcher is not a node

tags/v0.9.15
Jonathan Cobb hace 4 años
padre
commit
1cf94d1598
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      bubble-server/src/main/java/bubble/server/BubbleConfiguration.java

+ 1
- 1
bubble-server/src/main/java/bubble/server/BubbleConfiguration.java Ver fichero

@@ -282,7 +282,7 @@ public class BubbleConfiguration extends PgRestServerConfiguration
{TAG_ALLOW_REGISTRATION, thisNetwork == null ? null : thisNetwork.getBooleanTag(TAG_ALLOW_REGISTRATION, false)},
{TAG_NETWORK_UUID, thisNetwork == null ? null : thisNetwork.getUuid()},
{TAG_SAGE_LAUNCHER, thisNetwork == null || isSageLauncher()},
{TAG_BUBBLE_NODE, thisNetwork == null ? null : thisNetwork.getInstallType() == AnsibleInstallType.node},
{TAG_BUBBLE_NODE, isSageLauncher() || thisNetwork == null ? null : thisNetwork.getInstallType() == AnsibleInstallType.node},
{TAG_PAYMENTS_ENABLED, cloudDAO.paymentsEnabled()},
{TAG_PROMO_CODE_POLICY, getPromoCodePolicy().name()},
{TAG_REQUIRE_SEND_METRICS, requireSendMetrics()},


Cargando…
Cancelar
Guardar