rename Telephony Context view and add rendering

and tenant property lookup for transfer
summary
This commit is contained in:
2023-10-11 19:21:48 -05:00
parent 5c802c8e4e
commit 902189c34d
3 changed files with 183 additions and 81 deletions

View File

@@ -5,7 +5,7 @@ import DebugFrameView from "../views/DebugFrameView.vue";
import SideBarView from "../views/SideBarView.vue";
import SearchByReferenceView from "../views/SearchByReferenceView.vue";
import InteractionsFlowView from "../views/InteractionsFlowView.vue";
import CustomerAccountView from "../views/CustomerAccountView.vue";
import CustomerAccountView from "../views/TelephonyContextView.vue";
const routes = [
{
@@ -37,17 +37,19 @@ const routes = [
props: {
default: (route) => ({
sessionIdentifier: route.query._sessionIdentifier,
username: route.query.username,
}),
},
},
{
path: "/customerAccount/:accountNumber",
path: "/telephonyContext",
name: "customerAccount",
components: { default: CustomerAccountView },
props: {
default: (route) => ({
...route.params,
...route.query
...route.query,
sessionIdentifier: route.query._sessionIdentifier
}),
},
},