Update Routes for upcoming Groups entity

This commit is contained in:
Bubka
2020-10-22 17:15:05 +02:00
parent 27dbf6b72f
commit 8f8c6ac83f
4 changed files with 17 additions and 7 deletions

View File

@ -29,7 +29,7 @@
</div>
<!-- Fallback link to classic form -->
<div class="column is-full quick-uploader-footer">
<router-link :to="{ name: 'create' }" class="is-link">{{ $t('twofaccounts.use_full_form') }}</router-link>
<router-link :to="{ name: 'createAccount' }" class="is-link">{{ $t('twofaccounts.use_full_form') }}</router-link>
</div>
</div>
</div>
@ -210,7 +210,7 @@
response = await this.form.post('/api/qrcode/decode')
}
this.$router.push({ name: 'create', params: { qrAccount: response.data } });
this.$router.push({ name: 'createAccount', params: { qrAccount: response.data } });
},