diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-12-03 11:51:46 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-12-03 11:51:46 -0600 |
commit | 732ebe0cad8b53bed6399fb7d30c351c2a502c3d (patch) | |
tree | 4d78319515a0ad18159fe57635ad8506ae8619b3 | |
parent | 7731e7c90bdd8d16f29b9be2cd73094e861e8bf6 (diff) | |
download | mediagoblin-732ebe0cad8b53bed6399fb7d30c351c2a502c3d.tar.lz mediagoblin-732ebe0cad8b53bed6399fb7d30c351c2a502c3d.tar.xz mediagoblin-732ebe0cad8b53bed6399fb7d30c351c2a502c3d.zip |
Turning off the Terms of Service feature by default
This commit sponsored by Jessica Coates. Thank you!
-rw-r--r-- | mediagoblin.ini | 4 | ||||
-rw-r--r-- | mediagoblin/config_spec.ini | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin.ini b/mediagoblin.ini index 9a631302..fe9d5cd2 100644 --- a/mediagoblin.ini +++ b/mediagoblin.ini @@ -32,8 +32,8 @@ allow_reporting = true ## install other themes. # theme = airy -## If you don't want the terms of service displayed, you can uncomment this -# show_tos = false +## If you want the terms of service displayed, you can uncomment this +# show_tos = true [storage:queuestore] base_dir = %(here)s/user_dev/media/queue diff --git a/mediagoblin/config_spec.ini b/mediagoblin/config_spec.ini index 971b6153..cc1ac637 100644 --- a/mediagoblin/config_spec.ini +++ b/mediagoblin/config_spec.ini @@ -48,7 +48,7 @@ allow_reporting = boolean(default=True) # Enable/disable terms of service # ... Note: you can override the terms of service template on a # per-site basis... -show_tos = boolean(default=True) +show_tos = boolean(default=False) # By default not set, but you might want something like: # "%(here)s/user_dev/templates/" |