Commit 46e422886c2e1baa4398881406d0b4c6b7ec939b
1 parent
ee6a0605
Exists in
master
and in
39 other branches
Removing get_updated_field from accounts
Showing
1 changed file
with
0 additions
and
3 deletions
Show diff stats
src/accounts/search_indexes.py
... | ... | @@ -41,9 +41,6 @@ class UserIndex(indexes.SearchIndex, indexes.Indexable): |
41 | 41 | self._badge_counters = get_users_counters() |
42 | 42 | return self._badge_counters |
43 | 43 | |
44 | - def get_updated_field(self): | |
45 | - return 'modified' | |
46 | - | |
47 | 44 | def prepare(self, obj): |
48 | 45 | prepared_data = super(UserIndex, self).prepare(obj) |
49 | 46 | ... | ... |