aboutsummaryrefslogtreecommitdiff
path: root/src/components/registration/registration.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-12-25 03:46:51 +0300
committerHenry Jameson <me@hjkos.com>2018-12-25 03:46:51 +0300
commite3cac42cc78692f8f1ac267ef3209298ae03d527 (patch)
treef99a73330218a1394f9ef2eab608f951d599bf7f /src/components/registration/registration.js
parenta4f09029260100f6d5baea67ac333593c5c4432c (diff)
parente59b67e119f1f598354fb0dca86774e1b0f6c4c4 (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.js2
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()