This commit is contained in:
lesion
2021-10-18 15:45:16 +02:00
parent 18dc1cb15c
commit 858d6b31c8
3 changed files with 3 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ export default {
},
methods: {
next () {
window.location='/'
window.location='/admin'
},
async start (user) {
this.user = { ...user }
@@ -29,7 +29,6 @@ export default {
try {
await this.$axios.$get('/ping')
// window.location='/'
this.loading = false
} catch (e) {
setTimeout(() => this.start(user), 1000)

View File

@@ -15,7 +15,7 @@
v-text-field(type='password' v-model='db.password' label='Password' :rules="[$validators.required('password')]")
v-card-actions
v-btn(text @click='checkDb' color='primary' :loading='loading' :disabled='loading') {{$t('setup.check_db')}}
v-btn(text @click='checkDb' color='primary' :loading='loading' :disabled='loading') {{$t('common.next')}}
v-icon mdi-arrow-right
</template>
<script>

View File

@@ -8,7 +8,7 @@ export default ({ app }, inject) => {
},
email: [
v => !!v || $t('validators.required', { fieldName: $t('common.email') }),
v => (v && !!linkify.test(v, 'email')) || $t('validators.email')
v => (v && (v === 'admin' || !!linkify.test(v, 'email')) || $t('validators.email'))
],
password: [
v => !!v || $t('validators.required', { fieldName: $t('common.password') })