2FAuth/resources/js/views/groups/Edit.vue

46 lines
1.2 KiB
Vue
Raw Normal View History

2020-10-25 23:59:03 +01:00
<template>
<form-wrapper :title="$t('groups.forms.rename_group')">
<form @submit.prevent="updateGroup" @keydown="form.onKeydown($event)">
<form-field :form="form" fieldName="name" inputType="text" :label="$t('groups.forms.new_name')" autofocus />
2022-09-17 19:31:11 +02:00
<form-buttons
:submitId="'btnEditGroup'"
:isBusy="form.isBusy"
:caption="$t('commons.save')"
:showCancelButton="true"
cancelLandingView="groups" />
2020-10-25 23:59:03 +01:00
</form>
</form-wrapper>
</template>
<script>
import Form from './../../components/Form'
export default {
data() {
return {
form: new Form({
name: this.name,
2020-10-25 23:59:03 +01:00
})
}
},
props: ['id', 'name'],
2020-10-25 23:59:03 +01:00
methods: {
async updateGroup() {
await this.form.put('/api/v1/groups/' + this.id)
2020-10-25 23:59:03 +01:00
if( this.form.errors.any() === false ) {
this.$notify({ type: 'is-success', text: this.$t('groups.group_name_saved') })
this.$router.push({ name: 'groups' })
2020-10-25 23:59:03 +01:00
}
},
},
}
</script>