MT#56239 enable caller/callee wildcards for conversations and

recordings

Change-Id: I3231024b6103b6695f0d9a1bf062609f9968e8a4
(cherry picked from commit cd25874acb)
mr10.5.6
Rene Krenn 2 years ago committed by Marco Capetta
parent 13aa532648
commit 102a4f6ff0

@ -41,7 +41,8 @@ export default {
async fetchRecordings (context, options) {
const recs = await getRecordings({
...options,
subscriber_id: context.getters.subscriberId
subscriber_id: context.getters.subscriberId,
wildcards: true
})
context.commit('callRecordings', recs.recordings)
return recs.total_count

@ -91,7 +91,10 @@ export default {
type: options.type,
from: _.get(options, 'filter.from', ''),
to: _.get(options, 'filter.to', ''),
direction: _.get(options, 'filter.direction', '')
direction: _.get(options, 'filter.direction', ''),
caller: _.get(options, 'filter.caller', ''),
callee: _.get(options, 'filter.callee', ''),
wildcards: true
})
context.commit('nextPageSucceeded', res)
} catch (err) {

Loading…
Cancel
Save