commit/galaxy-central: greg: Add new Galaxy user email verification config settings to the tool shed so it will allow proper user creation.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/dd1e1bdfcd82/ Changeset: dd1e1bdfcd82 User: greg Date: 2013-09-24 22:39:21 Summary: Add new Galaxy user email verification config settings to the tool shed so it will allow proper user creation. Affected #: 1 file diff -r 5dac9278118487280f14e3a8365535e69a62a960 -r dd1e1bdfcd8254918d6216fd264c2e6698beebfb lib/galaxy/webapps/tool_shed/config.py --- a/lib/galaxy/webapps/tool_shed/config.py +++ b/lib/galaxy/webapps/tool_shed/config.py @@ -62,6 +62,12 @@ self.use_tool_dependencies = False self.update_integrated_tool_panel = False self.use_remote_user = string_as_bool( kwargs.get( "use_remote_user", "False" ) ) + self.user_activation_on = kwargs.get( 'user_activation_on', None ) + self.activation_grace_period = kwargs.get( 'activation_grace_period', None ) + self.inactivity_box_content = kwargs.get( 'inactivity_box_content', None ) + self.registration_warning_message = kwargs.get( 'registration_warning_message', None ) + self.blacklist_location = kwargs.get( 'blacklist_file', None ) + self.blacklist_content = None self.remote_user_maildomain = kwargs.get( "remote_user_maildomain", None ) self.remote_user_logout_href = kwargs.get( "remote_user_logout_href", None ) self.require_login = string_as_bool( kwargs.get( "require_login", "False" ) ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org