File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
templates/components/forms/admin/settings/system Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ export default ModelBase.extend({
90
90
adminBillingCity : attr ( 'string' ) ,
91
91
adminBillingZip : attr ( 'string' ) ,
92
92
adminBillingAdditionalInfo : attr ( 'string' ) ,
93
+ isGoogleRecaptchaEnabled : attr ( 'boolean' , { defaultValue : false } ) ,
94
+ googleRecaptchaSite : attr ( 'string' ) ,
95
+ googleRecaptchaSecret : attr ( 'string' ) ,
93
96
/**
94
97
* Computed properties
95
98
*/
Original file line number Diff line number Diff line change 25
25
<label >
26
26
{{ t ' Google reCAPTCHA Site Key' }}
27
27
</label >
28
- {{ input type =' text' name =' google_recaptcha_sitekey' value =settings.googleRecaptchaSitekey }}
28
+ {{ input type =' text' name =' google_recaptcha_sitekey' value =settings.googleRecaptchaSite }}
29
29
</div >
30
30
<div class =" field" >
31
31
<label >
32
32
{{ t ' Google reCAPTCHA Secret Key' }}
33
33
</label >
34
- {{ input type =' text' name =' google_recaptcha_secretkey' value =settings.googleRecaptchaSecretkey }}
34
+ {{ input type =' text' name =' google_recaptcha_secretkey' value =settings.googleRecaptchaSecret }}
35
35
</div >
36
36
{{ /if }}
You can’t perform that action at this time.
0 commit comments