mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Clean out commented 'about' field
This commit is contained in:
parent
b10f32b772
commit
62ed50a73d
@ -47,14 +47,6 @@
|
|||||||
:label="$t('settings.data.labelName')"
|
:label="$t('settings.data.labelName')"
|
||||||
:placeholder="$t('settings.data.namePlaceholder')"
|
:placeholder="$t('settings.data.namePlaceholder')"
|
||||||
/>
|
/>
|
||||||
<!-- Wolle <ds-input
|
|
||||||
id="about"
|
|
||||||
model="about"
|
|
||||||
type="textarea"
|
|
||||||
rows="3"
|
|
||||||
:label="$t('settings.data.labelBio')"
|
|
||||||
:placeholder="$t('settings.data.labelBio')"
|
|
||||||
/> -->
|
|
||||||
<ds-input
|
<ds-input
|
||||||
id="password"
|
id="password"
|
||||||
model="password"
|
model="password"
|
||||||
@ -149,7 +141,6 @@ export default {
|
|||||||
supportEmail: emails.SUPPORT,
|
supportEmail: emails.SUPPORT,
|
||||||
formData: {
|
formData: {
|
||||||
name: '',
|
name: '',
|
||||||
// Wolle about: '',
|
|
||||||
...passwordForm.formData,
|
...passwordForm.formData,
|
||||||
},
|
},
|
||||||
formSchema: {
|
formSchema: {
|
||||||
@ -158,10 +149,6 @@ export default {
|
|||||||
required: true,
|
required: true,
|
||||||
min: 3,
|
min: 3,
|
||||||
},
|
},
|
||||||
// Wolle about: {
|
|
||||||
// type: 'string',
|
|
||||||
// required: false,
|
|
||||||
// },
|
|
||||||
...passwordForm.formSchema,
|
...passwordForm.formSchema,
|
||||||
},
|
},
|
||||||
response: null, // Wolle
|
response: null, // Wolle
|
||||||
@ -182,9 +169,6 @@ export default {
|
|||||||
this.formData.name = this.sliderData.collectedInputData.name
|
this.formData.name = this.sliderData.collectedInputData.name
|
||||||
? this.sliderData.collectedInputData.name
|
? this.sliderData.collectedInputData.name
|
||||||
: ''
|
: ''
|
||||||
// Wolle this.formData.about = this.sliderData.collectedInputData.about
|
|
||||||
// ? this.sliderData.collectedInputData.about
|
|
||||||
// : ''
|
|
||||||
this.formData.password = this.sliderData.collectedInputData.password
|
this.formData.password = this.sliderData.collectedInputData.password
|
||||||
? this.sliderData.collectedInputData.password
|
? this.sliderData.collectedInputData.password
|
||||||
: ''
|
: ''
|
||||||
@ -247,7 +231,6 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
sendValidation() {
|
sendValidation() {
|
||||||
// Wolle const { name, about, password, passwordConfirmation } = this.formData
|
|
||||||
const { name, password, passwordConfirmation } = this.formData
|
const { name, password, passwordConfirmation } = this.formData
|
||||||
const {
|
const {
|
||||||
termsAndConditionsConfirmed,
|
termsAndConditionsConfirmed,
|
||||||
@ -260,7 +243,6 @@ export default {
|
|||||||
this.sliderData.setSliderValuesCallback(this.validInput, {
|
this.sliderData.setSliderValuesCallback(this.validInput, {
|
||||||
collectedInputData: {
|
collectedInputData: {
|
||||||
name,
|
name,
|
||||||
// Wolle about,
|
|
||||||
password,
|
password,
|
||||||
passwordConfirmation,
|
passwordConfirmation,
|
||||||
termsAndConditionsConfirmed,
|
termsAndConditionsConfirmed,
|
||||||
@ -278,7 +260,6 @@ export default {
|
|||||||
this.sendValidation()
|
this.sendValidation()
|
||||||
},
|
},
|
||||||
async submit() {
|
async submit() {
|
||||||
// Wolle const { name, password, about } = this.formData
|
|
||||||
const { name, password } = this.formData
|
const { name, password } = this.formData
|
||||||
const { email, inviteCode = null, nonce } = this.sliderData.collectedInputData
|
const { email, inviteCode = null, nonce } = this.sliderData.collectedInputData
|
||||||
const termsAndConditionsAgreedVersion = VERSION
|
const termsAndConditionsAgreedVersion = VERSION
|
||||||
@ -292,7 +273,6 @@ export default {
|
|||||||
variables: {
|
variables: {
|
||||||
name,
|
name,
|
||||||
password,
|
password,
|
||||||
// Wolle about,
|
|
||||||
email,
|
email,
|
||||||
inviteCode,
|
inviteCode,
|
||||||
nonce,
|
nonce,
|
||||||
|
|||||||
@ -100,7 +100,6 @@ storiesOf('RegistrationSlider', module)
|
|||||||
name: 'Wolle',
|
name: 'Wolle',
|
||||||
password: 'Hello',
|
password: 'Hello',
|
||||||
passwordConfirmation: 'Hello',
|
passwordConfirmation: 'Hello',
|
||||||
// Wolle about: `Hey`,
|
|
||||||
termsAndConditionsConfirmed: true,
|
termsAndConditionsConfirmed: true,
|
||||||
dataPrivacy: true,
|
dataPrivacy: true,
|
||||||
minimumAge: true,
|
minimumAge: true,
|
||||||
@ -134,7 +133,6 @@ storiesOf('RegistrationSlider', module)
|
|||||||
name: 'Wolle',
|
name: 'Wolle',
|
||||||
password: 'Hello',
|
password: 'Hello',
|
||||||
passwordConfirmation: 'Hello',
|
passwordConfirmation: 'Hello',
|
||||||
// Wolle about: `Hey`,
|
|
||||||
termsAndConditionsConfirmed: true,
|
termsAndConditionsConfirmed: true,
|
||||||
dataPrivacy: true,
|
dataPrivacy: true,
|
||||||
minimumAge: true,
|
minimumAge: true,
|
||||||
@ -160,7 +158,6 @@ storiesOf('RegistrationSlider', module)
|
|||||||
name: null,
|
name: null,
|
||||||
password: null,
|
password: null,
|
||||||
passwordConfirmation: null,
|
passwordConfirmation: null,
|
||||||
// Wolle about: null,
|
|
||||||
termsAndConditionsConfirmed: null,
|
termsAndConditionsConfirmed: null,
|
||||||
dataPrivacy: null,
|
dataPrivacy: null,
|
||||||
minimumAge: null,
|
minimumAge: null,
|
||||||
@ -186,7 +183,6 @@ storiesOf('RegistrationSlider', module)
|
|||||||
name: 'Wolle',
|
name: 'Wolle',
|
||||||
password: 'Hello',
|
password: 'Hello',
|
||||||
passwordConfirmation: 'Hello',
|
passwordConfirmation: 'Hello',
|
||||||
// Wolle about: `Hey`,
|
|
||||||
termsAndConditionsConfirmed: true,
|
termsAndConditionsConfirmed: true,
|
||||||
dataPrivacy: true,
|
dataPrivacy: true,
|
||||||
minimumAge: true,
|
minimumAge: true,
|
||||||
|
|||||||
@ -175,7 +175,6 @@ export default {
|
|||||||
name: null,
|
name: null,
|
||||||
password: null,
|
password: null,
|
||||||
passwordConfirmation: null,
|
passwordConfirmation: null,
|
||||||
// Wolle about: null,
|
|
||||||
termsAndConditionsConfirmed: null,
|
termsAndConditionsConfirmed: null,
|
||||||
dataPrivacy: null,
|
dataPrivacy: null,
|
||||||
minimumAge: null,
|
minimumAge: null,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user