소스 검색

修改shopify返回通用域名

linhaohong 8 달 전
부모
커밋
07d7fef874
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Controller/ShopifyController.py

+ 1 - 1
Controller/ShopifyController.py

@@ -405,7 +405,7 @@ class ShopifyView(View):
             country_qs = country_qs.values('country_id', 'country_name', 'country_code', 'api').order_by('country_id')
             country_list = []
             for country in country_qs:
-                country['api'] = country['api'] + 'shopify/shopifyRegister'
+                country['api'] = country['api']
                 country_list.append(country)
             return response.json(0, country_list)
         except Exception as e: