Commit 9ffabc6d authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #5200 from pfaro/bugfix-signup

 Add check if the signup setting is enabled. fixes #4832
parents 715eaed6 96ae1a80
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<%= link_to "Sign in", new_session_path(resource_name), class: "btn" %><br /> <%= link_to "Sign in", new_session_path(resource_name), class: "btn" %><br />
<% end -%> <% end -%>
<%- if devise_mapping.registerable? && controller_name != 'registrations' %> <%- if devise_mapping.registerable? && controller_name != 'registrations' && Gitlab.config.gitlab.signup_enabled %>
<%= link_to "Sign up", new_registration_path(resource_name) %><br /> <%= link_to "Sign up", new_registration_path(resource_name) %><br />
<% end -%> <% end -%>
......
...@@ -52,7 +52,8 @@ production: &base ...@@ -52,7 +52,8 @@ production: &base
## Users management ## Users management
# signup_enabled: true # default: false - Account passwords are not sent via the email if signup is enabled. # default: false - Account passwords are not sent via the email if signup is enabled.
# signup_enabled: true
## Automatic issue closing ## Automatic issue closing
# If a commit message matches this regular express, all issues referenced from the matched text will be closed # If a commit message matches this regular express, all issues referenced from the matched text will be closed
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment