Example #1
0
def kaylee_subscribe_node(request, app_name, node_id):
    #pylint: disable-msg=W0613
    #W0613:  Unused argument 'request'
    node_config = kl.subscribe(node_id, app_name)
    return json_response(node_config)
Example #2
0
def subscribe_node(request, app_name, node_id):
    node_config = kl.subscribe(node_id, app_name)
    return json_response(node_config)