Skip to content

Commit

Permalink
KAZOO-5027 enrich conferences in view with ui_flags field (2600hz#2497)
Browse files Browse the repository at this point in the history
* KAZOO-5027 enrich conferences in view with ui_flags field
  • Loading branch information
jamhed authored and lazedo committed Sep 9, 2016
1 parent 200de93 commit d9d7720
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"language": "javascript",
"views": {
"crossbar_listing": {
"map": "function(doc) { if (doc.pvt_type != 'conference' || doc.pvt_deleted) return; emit(doc._id, {'id': doc._id, 'name': doc.name, 'owner_id': doc.owner_id, 'member': doc.member, 'moderator': doc.moderator, 'conference_numbers': doc.conference_numbers}); }"
"map": "function(doc) { if (doc.pvt_type != 'conference' || doc.pvt_deleted) return; emit(doc._id, {'id': doc._id, 'name': doc.name, 'owner_id': doc.owner_id, 'member': doc.member, 'moderator': doc.moderator, 'ui_flags': doc.ui_flags, 'conference_numbers': doc.conference_numbers}); }"
},
"listing_by_name": {
"map": "function(doc) { if (doc.pvt_type != 'conference' || doc.pvt_deleted) return; emit(doc.name, null);}"
Expand Down

0 comments on commit d9d7720

Please sign in to comment.