diff options
| author | Henry Jameson <me@hjkos.com> | 2018-12-25 03:46:51 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-12-25 03:46:51 +0300 |
| commit | e3cac42cc78692f8f1ac267ef3209298ae03d527 (patch) | |
| tree | f99a73330218a1394f9ef2eab608f951d599bf7f /src/components/registration/registration.js | |
| parent | a4f09029260100f6d5baea67ac333593c5c4432c (diff) | |
| parent | e59b67e119f1f598354fb0dca86774e1b0f6c4c4 (diff) | |
Merge remote-tracking branch 'upstream/develop' into push_fix
* upstream/develop:
Add a translation to the captcha strings in the registration form
Small UI improvements for the CAPTCHA field
Add encrypted captcha_answer_data for stateless captcha
fixes many problems related to user profile
Diffstat (limited to 'src/components/registration/registration.js')
| -rw-r--r-- | src/components/registration/registration.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js index 65b2fb9b..dd8e6e5d 100644 --- a/src/components/registration/registration.js +++ b/src/components/registration/registration.js @@ -48,8 +48,10 @@ const registration = { async submit () { this.user.nickname = this.user.username this.user.token = this.token + this.user.captcha_solution = this.captcha.solution this.user.captcha_token = this.captcha.token + this.user.captcha_answer_data = this.captcha.answer_data this.$v.$touch() |
