You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by je...@apache.org on 2014/11/10 10:37:35 UTC

[09/12] allura git commit: [#7704] ticket:662 Added pending field to index

[#7704] ticket:662 Added pending field to index


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/d15b3348
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/d15b3348
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/d15b3348

Branch: refs/heads/ib/7704
Commit: d15b33484e6a52631ab13e8061ad93d1cf7f8372
Parents: 566f303
Author: Aleksey 'LXj' Alekseyev <go...@gmail.com>
Authored: Fri Oct 10 00:53:26 2014 +0300
Committer: Igor Bondarenko <je...@gmail.com>
Committed: Tue Nov 4 13:57:03 2014 +0000

----------------------------------------------------------------------
 Allura/allura/model/auth.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/d15b3348/Allura/allura/model/auth.py
----------------------------------------------------------------------
diff --git a/Allura/allura/model/auth.py b/Allura/allura/model/auth.py
index ee2793b..96a9795 100644
--- a/Allura/allura/model/auth.py
+++ b/Allura/allura/model/auth.py
@@ -315,6 +315,7 @@ class User(MappedClass, ActivityNode, ActivityObject, SearchIndexable):
             email_addresses_t=' '.join([e for e in self.email_addresses if e]),
             last_password_updated_dt=self.last_password_updated,
             disabled_b=self.disabled,
+            pending_b=self.pending,
             results_per_page_i=self.get_pref('results_per_page'),
             email_address_s=self.get_pref('email_address'),
             email_format_s=self.get_pref('email_format'),