summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-07 18:16:23 +0100
committerErik Johnston <erik@matrix.org>2015-04-07 18:16:23 +0100
commit0775c624698dbe5a837280e729ec488fd0dda28e (patch)
treec9928165d4d6c5844381771edc63c01194537b19
parentMake demo script use --enable-registration (diff)
downloadsynapse-0775c624698dbe5a837280e729ec488fd0dda28e.tar.xz
Fix --enable-registration flag to work if you don't give a value
-rwxr-xr-xdemo/start.sh4
-rw-r--r--synapse/config/registration.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/demo/start.sh b/demo/start.sh

index d647400d39..0485be8053 100755 --- a/demo/start.sh +++ b/demo/start.sh
@@ -33,8 +33,8 @@ for port in 8080 8081 8082; do --manhole $((port + 1000)) \ --tls-dh-params-path "demo/demo.tls.dh" \ --media-store-path "demo/media_store.$port" \ - $PARAMS $SYNAPSE_PARAMS \ - --enable-registration + $PARAMS $SYNAPSE_PARAMS \ + --enable-registration python -m synapse.app.homeserver \ --config-path "demo/etc/$port.config" \ diff --git a/synapse/config/registration.py b/synapse/config/registration.py
index a6a2d2c5e1..d5c8f4bf7b 100644 --- a/synapse/config/registration.py +++ b/synapse/config/registration.py
@@ -40,7 +40,7 @@ class RegistrationConfig(Config): reg_group.add_argument( "--enable-registration", - const=False, + const=True, default=False, nargs='?', help="Enable registration for new users.",