Skip to content

Commit 0b5b562

Browse files
committed
Minor fixes to recaptcha
1 parent fb7dc9d commit 0b5b562

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/views/devise/registrations/new.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
)) %>
88
<% end %>
99

10-
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { "data-turbo" => "false", id: "signup-form" }) do |f| %>
10+
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { "data-turbo" => "false" }) do |f| %>
1111
<%= render "devise/shared/error_messages", resource: resource %>
1212

1313
<div class="mb-6">
@@ -26,7 +26,7 @@
2626
<% end %>
2727
</div>
2828

29-
<%= recaptcha_v3(action: 'signup', script: true) if Settings.recaptcha.site_key.present? %>
29+
<%= recaptcha_v3(action: 'signup', script: true) if Settings.recaptcha&.site_key.present? && Settings.recaptcha&.secret_key.present? %>
3030

3131
<%= render(Login::ButtonComponent.new(form: f).with_content(t('.submit'))) %>
3232
<% end %>

config/settings.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ mailchimp:
1818
list_url: <%= ENV.fetch('MAILCHIMP_LIST_CHANGELOG_URL', nil) %>
1919
api_key: <%= ENV.fetch('MAILCHIMP_API_KEY', nil) %>
2020

21+
recaptcha:
22+
site_key: <%= ENV.fetch('RECAPTCHA_SITE_KEY', nil) %>
23+
secret_key: <%= ENV.fetch('RECAPTCHA_SECRET_KEY', nil) %>
24+
2125
# set to true if the server won't have online access. this disables Sentry,
2226
# etc.
2327
standalone: false
@@ -32,7 +36,3 @@ auth:
3236
# Optionally send error messages to the Sentry service by providing your
3337
# Sentry DSN:
3438
sentry_dsn: <%= ENV['SENTRY_DSN'] %>
35-
36-
recaptcha:
37-
site_key: <%= ENV.fetch('RECAPTCHA_SITE_KEY', nil) %>
38-
secret_key: <%= ENV.fetch('RECAPTCHA_SECRET_KEY', nil) %>

0 commit comments

Comments
 (0)