|
@@ -181,6 +181,7 @@ class DetectControllerView(View):
|
|
|
|
|
|
def do_change_status(self, userID, request_dict, response):
|
|
|
token_val = request_dict.get('token_val', None)
|
|
|
+ jg_token_val = request_dict.get('jg_token_val', '')
|
|
|
appBundleId = request_dict.get('appBundleId', None)
|
|
|
app_type = request_dict.get('app_type', None)
|
|
|
push_type = request_dict.get('push_type', None)
|
|
@@ -271,6 +272,7 @@ class DetectControllerView(View):
|
|
|
'app_type': app_type,
|
|
|
'push_type': push_type,
|
|
|
'token_val': token_val,
|
|
|
+ 'jg_token_val': jg_token_val,
|
|
|
'updTime': nowTime,
|
|
|
'lang': lang,
|
|
|
'tz': tz
|
|
@@ -285,6 +287,7 @@ class DetectControllerView(View):
|
|
|
'app_type': app_type,
|
|
|
'push_type': push_type,
|
|
|
'token_val': token_val,
|
|
|
+ 'jg_token_val': jg_token_val,
|
|
|
'm_code': m_code,
|
|
|
'addTime': nowTime,
|
|
|
'updTime': nowTime,
|