def sendNotificationEmails(self):
     appId = app_identity.get_application_id()
     logging.info('GAE App Id: %s' % appId)
     if appId != 'whysaurus':
         logging.warning('Bypassing email notifications outside primary app. App Id: %s' % appId)
         self.response.out.write('Bypass!')
         return
     WhysaurusUser.sendNotificationEmails(self)
     self.response.out.write('') # succeed!
Example #2
0
    def sendNotificationEmails(self):
        WhysaurusUser.sendNotificationEmails(self)
        self.response.out.write('') # succeed!
        
        
        
        
        
        

        
Example #3
0
 def sendNotificationEmails(self):
     WhysaurusUser.sendNotificationEmails(self)
     self.response.out.write('')  # succeed!