diff --git a/src/api/pbx-seats.js b/src/api/pbx-seats.js
index ac3aba47..e9a8b458 100644
--- a/src/api/pbx-seats.js
+++ b/src/api/pbx-seats.js
@@ -152,7 +152,6 @@ export function createSeat (seat) {
})
}).then(($subscriberId) => {
subscriberId = $subscriberId
- setSeatIntraPbx(subscriberId, seat.clirIntrapbx)
if (seat.soundSet !== null && seat.soundSet !== undefined) {
return getSoundSet(seat.soundSet)
} else {
diff --git a/src/components/pages/PbxConfiguration/CscPbxSeat.vue b/src/components/pages/PbxConfiguration/CscPbxSeat.vue
index 27731c46..842cc4bd 100644
--- a/src/components/pages/PbxConfiguration/CscPbxSeat.vue
+++ b/src/components/pages/PbxConfiguration/CscPbxSeat.vue
@@ -81,33 +81,6 @@
-
-
-
-
-
-
-
-
-
-
-
@@ -142,10 +115,6 @@ export default {
loading: {
type: Boolean,
default: undefined
- },
- musicOnHold: {
- type: Boolean,
- default: undefined
}
},
emits: ['save-intra-pbx', 'save-music-on-hold', 'remove'],
@@ -168,8 +137,6 @@ export default {
name: this.seat.display_name,
extension: this.seat.pbx_extension,
webPassword: this.seat.webpassword,
- clirIntrapbx: this.intraPbx,
- musicOnHold: this.musicOnHold,
groups: this.getGroupIds()
}
},
@@ -215,18 +182,6 @@ export default {
seatSIPPassword: password
})
},
- changeIntraPbx () {
- this.$emit('save-intra-pbx', {
- seatId: this.seat.id,
- intraPbx: this.changes.clirIntrapbx
- })
- },
- changeMusicOnHold () {
- this.$emit('save-music-on-hold', {
- seatId: this.seat.id,
- musicOnHold: this.changes.musicOnHold
- })
- },
showSeatDetails () {
this.$router.push('/user/pbx-configuration/seat/' + this.seat.id)
}
diff --git a/src/components/pages/PbxConfiguration/CscPbxSeatAddForm.vue b/src/components/pages/PbxConfiguration/CscPbxSeatAddForm.vue
index a020e213..5b495005 100644
--- a/src/components/pages/PbxConfiguration/CscPbxSeatAddForm.vue
+++ b/src/components/pages/PbxConfiguration/CscPbxSeatAddForm.vue
@@ -101,13 +101,6 @@
/>
-