import ngModule from '../module'; import Section from 'salix/components/section'; export default class Controller extends Section { $onInit() { if (this.$params.emailVerified) { const params = { emailVerified: true }; return this.$http.patch(`Accounts/${this.$params.id}`, params) .then(() => { this.vnApp.showSuccess(this.$t('Email verified successfully!')); }); } } onSubmit() { this.$.watcher.submit() .then(() => this.card.reload()); } } ngModule.component('vnUserBasicData', { template: require('./index.html'), controller: Controller, require: { card: '^vnUserCard' } });