Example #1
0
def ensure_documents_indexed():
    for plugin in Plugin.query(Plugin.approved is True):
        search.ensure_plugin_indexed(plugin)
Example #2
0
def ensure_documents_indexed():
  for plugin in Plugin.query(Plugin.approved == True):
    search.ensure_plugin_indexed(plugin)
Example #3
0
 def enable(self):
   self.approved = True
   self.put()
   search.ensure_plugin_indexed(self)
Example #4
0
 def enable(self):
     self.approved = True
     self.put()
     search.ensure_plugin_indexed(self)