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