moved authentication_disabled to config_spec

This commit is contained in:
Rodney Ewing
2013-06-15 12:32:20 -07:00
parent 5101c469d7
commit 54ef2c408b
7 changed files with 7 additions and 14 deletions

View File

@@ -12,10 +12,6 @@ email_debug_mode = true
# Set to false to disable registrations
allow_registration = true
# Set to true to run an instance with no authentication plugins enabled.
# You will not be able to login or register
authentication_disabled = false
[plugins]
[[mediagoblin.tests.testplugins.pluginspec]]
some_string = "not blork"

View File

@@ -2,7 +2,6 @@
direct_remote_path = /test_static/
email_sender_address = "notice@mediagoblin.example.org"
email_debug_mode = true
authentication_disabled = false
# TODO: Switch to using an in-memory database
sql_engine = "sqlite:///%(here)s/user_dev/mediagoblin.db"

View File

@@ -24,7 +24,6 @@ from mediagoblin.tests.tools import get_app, fixture_add_user
from mediagoblin.tools import template, mail
from mediagoblin.auth.tools import AuthError
from mediagoblin.auth import tools as auth_tools
from mediagoblin import auth
def test_register_views(test_app):

View File

@@ -2,7 +2,6 @@
direct_remote_path = /test_static/
email_sender_address = "notice@mediagoblin.example.org"
email_debug_mode = true
authentication_disabled = false
# TODO: Switch to using an in-memory database
sql_engine = "sqlite:///%(here)s/user_dev/mediagoblin.db"