Disable dependency on password, user, workflow_callback and workflow_context module parameters
This commit is contained in:
@@ -74,16 +74,16 @@ class DecortController(object):
|
|||||||
self.app_id = arg_amodule.params['app_id']
|
self.app_id = arg_amodule.params['app_id']
|
||||||
self.app_secret = arg_amodule.params['app_secret']
|
self.app_secret = arg_amodule.params['app_secret']
|
||||||
self.oauth2_url = arg_amodule.params['oauth2_url']
|
self.oauth2_url = arg_amodule.params['oauth2_url']
|
||||||
self.password = arg_amodule.params['password']
|
# self.password = arg_amodule.params['password']
|
||||||
self.user = arg_amodule.params['user']
|
# self.user = arg_amodule.params['user']
|
||||||
self.session_key = ''
|
self.session_key = ''
|
||||||
# self.iconf = arg_iconf
|
# self.iconf = arg_iconf
|
||||||
self.verify_ssl = arg_amodule.params['verify_ssl']
|
self.verify_ssl = arg_amodule.params['verify_ssl']
|
||||||
self.workflow_callback_present = False
|
self.workflow_callback_present = False
|
||||||
self.workflow_callback = arg_amodule.params['workflow_callback']
|
# self.workflow_callback = arg_amodule.params['workflow_callback']
|
||||||
self.workflow_context = arg_amodule.params['workflow_context']
|
# self.workflow_context = arg_amodule.params['workflow_context']
|
||||||
if self.workflow_callback != "":
|
# if self.workflow_callback != "":
|
||||||
self.workflow_callback_present = True
|
# self.workflow_callback_present = True
|
||||||
|
|
||||||
# The following will be initialized to the name of the user in DECORT controller, who corresponds to
|
# The following will be initialized to the name of the user in DECORT controller, who corresponds to
|
||||||
# the credentials supplied as authentication information parameters.
|
# the credentials supplied as authentication information parameters.
|
||||||
|
|||||||
Reference in New Issue
Block a user