- Timestamp:
- 2 Apr 2024, 20:40:16 (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/etranzact/browser.py
r17545 r17731 28 28 payoutlet_module_activated) 29 29 from kofacustom.nigeria.etranzact.payoutletwebservice import NigeriaPaymentDataWebservice 30 from kofacustom.nigeria.etranzact.credobrowser import ( 31 CredoPageStudent, CredoPageApplicant, 32 CredoVerifyPaymentStatusPageStudent, CredoVerifyPaymentStatusPageApplicant) 30 33 31 34 # Temporarily we can use the test portal like in kofacustom.nigeria … … 314 317 'JUPEB_REGISTRATION_FEE': ('jupeb_reg',), 315 318 } 319 320 # Credo customizations 321 322 SECRET_API_KEY = "0PRI0500LB11cBSSLcW0DcW1BcWgmf45" 323 API_PUBLIC_KEY = "0PUB0500wuoOe9sdtSOLj5peqHKc8Q9W" 324 CREDO_HOST = "api.credodemo.com" 325 326 class CustomCredoPageStudent(CredoPageStudent): 327 328 host = CREDO_HOST 329 api_public_key = API_PUBLIC_KEY 330 331 class CustomCredoPageApplicant(CredoPageApplicant): 332 333 host = CREDO_HOST 334 api_public_key = API_PUBLIC_KEY 335 336 class CustomCredoVerifyPaymentStatusPageStudent(CredoVerifyPaymentStatusPageStudent): 337 338 host = CREDO_HOST 339 secret_api_key = SECRET_API_KEY 340 341 class CustomCredoVerifyPaymentStatusPageApplicant(CredoVerifyPaymentStatusPageApplicant): 342 343 host = CREDO_HOST 344 secret_api_key = SECRET_API_KEY
Note: See TracChangeset for help on using the changeset viewer.