diff options
| author | Carlton Gibson <carlton.gibson@noumenal.es> | 2018-07-25 10:41:57 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-07-26 10:42:33 -0400 |
| commit | a67ebcb1cbd37e1fc9eddd2da1dda7f319c5ac1d (patch) | |
| tree | 3ffb727bdaabc617d7b9e0bafca313c97fba4d53 /docs/ref | |
| parent | 1c05fe65f280cedaddf5e5f308e5e45449b02e93 (diff) | |
Refs #29593, #26891 -- Doc'd RegisterLookupMixin.get_lookups().
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/models/lookups.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/models/lookups.txt b/docs/ref/models/lookups.txt index bd9831e23d..7a2f6edaa4 100644 --- a/docs/ref/models/lookups.txt +++ b/docs/ref/models/lookups.txt @@ -57,6 +57,11 @@ register lookups on itself. The two prominent examples are and checks if any has a registered lookup named ``lookup_name``, returning the first match. + .. method:: get_lookups() + + Returns a dictionary of each lookup name registered in the class mapped + to the :class:`Lookup` class. + .. method:: get_transform(transform_name) Returns a :class:`Transform` named ``transform_name``. The default |
