浏览代码

Payment Gateway Redirect

master
30117125 5 年前
父节点
当前提交
c46ee2e7b6
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      UnivateProperties_API/Controllers/Financial/RedirectController.cs

+ 3
- 3
UnivateProperties_API/Controllers/Financial/RedirectController.cs 查看文件

15
         {
15
         {
16
             if (context.TRANSACTION_STATUS == 1)
16
             if (context.TRANSACTION_STATUS == 1)
17
             {
17
             {
18
-                return Redirect("http://localhost:8080/#/payments/success");
18
+                return Redirect("http://training.provision-sa.com:122/#/payments/success");
19
             }
19
             }
20
             else if (context.TRANSACTION_STATUS == 2)
20
             else if (context.TRANSACTION_STATUS == 2)
21
             {
21
             {
22
-                return Redirect("http://training.provision-sa.com:121/#/paymentError");
22
+                return Redirect("http://training.provision-sa.com:122/#/paymentError");
23
             }
23
             }
24
             else
24
             else
25
             {
25
             {
26
-                return Redirect("http://localhost:8080/");
26
+                return Redirect("http://training.provision-sa.com:122/");
27
             }
27
             }
28
 
28
 
29
         }
29
         }

正在加载...
取消
保存