Merge pull request #292 from mabashian/5092-credential-filtering

Add user credential permissions without org
This commit is contained in:
Michael Abashian 2017-08-18 10:03:16 -04:00 committed by GitHub
commit 856d1a8047

View File

@ -357,6 +357,9 @@ function($injector, $stateExtender, $log, i18n) {
$stateParams[`${list.iterator}_search`].or__organization__in = orgIds.join();
}
else {
$stateParams[`${list.iterator}_search`].organization = 'null';
}
return qs.search(path, $stateParams[`${list.iterator}_search`]);
});