Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#649 | fixing user search fields | excluding…
Browse files Browse the repository at this point in the history
… boolean fields
  • Loading branch information
snyaggarwal committed Apr 26, 2021
1 parent ea451d1 commit d625e7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/users/models.py
Expand Up @@ -35,9 +35,9 @@ class Meta:
'date_joined': {'sortable': True, 'default': 'asc', 'filterable': False},
'company': {'sortable': True, 'filterable': True, 'exact': True},
'location': {'sortable': True, 'filterable': True, 'exact': True},
'is_superuser': {'sortable': False, 'filterable': True, 'exact': True, 'facet': True},
'is_staff': {'sortable': False, 'filterable': False, 'exact': True, 'facet': True},
'is_admin': {'sortable': False, 'filterable': False, 'exact': True, 'facet': True}
'is_superuser': {'sortable': False, 'filterable': True, 'exact': False, 'facet': True},
'is_staff': {'sortable': False, 'filterable': False, 'exact': False, 'facet': True},
'is_admin': {'sortable': False, 'filterable': False, 'exact': False, 'facet': True}
}

@property
Expand Down

0 comments on commit d625e7c

Please sign in to comment.