Skip to content

Commit

Permalink
Add 'iexact' to available filters (#283)
Browse files Browse the repository at this point in the history
* Update filters.py

* Update dynamic_rest.html
  • Loading branch information
vmihalachi authored and aleontiev committed Jul 31, 2019
1 parent 045a3f7 commit 193acee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dynamic_rest.html
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this

<dl class="attribute">
<dt>
<code class="descname">VALID_FILTER_OPERATORS</code><em class="property"> = ('in', 'any', 'all', 'icontains', 'contains', 'startswith', 'istartswith', 'endswith', 'iendswith', 'year', 'month', 'day', 'week_day', 'regex', 'range', 'gt', 'lt', 'gte', 'lte', 'isnull', 'eq', None)</em></dt>
<code class="descname">VALID_FILTER_OPERATORS</code><em class="property"> = ('in', 'any', 'all', 'icontains', 'contains', 'startswith', 'istartswith', 'endswith', 'iendswith', 'year', 'month', 'day', 'week_day', 'regex', 'range', 'gt', 'lt', 'gte', 'lte', 'isnull', 'eq', 'iexact', None)</em></dt>
<dd></dd></dl>

<dl class="method">
Expand Down Expand Up @@ -1381,4 +1381,4 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this


</body>
</html>
</html>
1 change: 1 addition & 0 deletions dynamic_rest/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ class DynamicFilterBackend(BaseFilterBackend):
'lte',
'isnull',
'eq',
'iexact',
None,
)

Expand Down

0 comments on commit 193acee

Please sign in to comment.