MT#64825 Erroneous Manager Secretary and Auto Attendant checks

* Replaces PROFILE_ATTRIBUTES_MAP.* lookups for
    PROFILE_ATTRIBUTE_MAP.managerSecretary and
    PROFILE_ATTRIBUTE_MAP.autoAttendant one the
    Manager Secretary and Auto Attendant submenu checks

Change-Id: I4b5395afa037bcd043357965a4f56d7d8d92de7a
(cherry picked from commit 628f6f2b50)
mr12.5
Giancarlo Errigo Mattos 2 months ago committed by Giancarlo Mattos
parent d092f42e75
commit 6e4f62e862

@ -267,13 +267,13 @@ export default {
to: '/user/extension-settings/ms-configs',
icon: 'arrow_forward',
label: this.$t('Manager Secretary'),
visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTES_MAP.manager_secretary)
visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTE_MAP.managerSecretary)
},
{
to: '/user/extension-settings/auto-attendant',
icon: 'dialpad',
label: this.$t('Auto Attendant'),
visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTES_MAP.autoAttendant)
visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTE_MAP.autoAttendant)
}
]
},

Loading…
Cancel
Save