Changeset 14785
- Timestamp:
- 9 Aug 2017, 10:46:29 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita/webservices.py
r14783 r14785 33 33 grok.require('waeup.Public') 34 34 35 ACCEPTED_IP = ('127.0.0.1', '209.235.215.199', '162.13.211.91', 36 '162.13.211.92', '83.138.167.2') 37 # ACCEPTED_IP = ('127.0.0.1', ) 35 ACCEPTED_IP = None 38 36 39 37 # Here we use Remita test portal data … … 73 71 'PaymentNotificationListenerWebservice called: %s' % real_ip) 74 72 if real_ip and self.ACCEPTED_IP: 75 if real_ip not in 73 if real_ip not in self.ACCEPTED_IP: 76 74 self.output = '-1' 77 75 return
Note: See TracChangeset for help on using the changeset viewer.