Skip to content
Snippets Groups Projects
Commit 12b744e1 authored by jaapjansma's avatar jaapjansma
Browse files

Merge branch 'contactingroupdefaultops' into 'master'

ContactInGroup filter only supports IN/NOT IN so map =/!= (if passed in via...

See merge request !65
parents bf9cf803 08a38191
No related branches found
No related tags found
1 merge request!65ContactInGroup filter only supports IN/NOT IN so map =/!= (if passed in via...
......@@ -48,6 +48,15 @@ class ContactInGroupFilter extends AbstractFieldFilterHandler {
* @return mixed
*/
public function setFilter($filter) {
switch ($filter['op']) {
case '=':
$filter['op'] = 'IN';
break;
case '!=':
$filter['op'] = 'NOT IN';
break;
}
$this->resetFilter();
$dataFlow = $this->dataSource->ensureField($this->inputFieldSpecification);
$group_ids = $filter['value'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment