mirror of
https://gitlab.com/RemixDev/deemix-gui-pyweb.git
synced 2024-12-29 10:56:06 +00:00
Added search continuous scrolling
This commit is contained in:
parent
ff5153cba3
commit
83ebf6bdad
|
@ -37,10 +37,17 @@ def initialize():
|
||||||
response = {'status': 'error'}
|
response = {'status': 'error'}
|
||||||
return jsonify(response)
|
return jsonify(response)
|
||||||
|
|
||||||
|
@server.route('/mainsearch', methods=['POST'])
|
||||||
|
def mainsearch():
|
||||||
|
data = json.loads(request.data)
|
||||||
|
return jsonify(app.mainSearch(data['term']))
|
||||||
|
|
||||||
@server.route('/search', methods=['POST'])
|
@server.route('/search', methods=['POST'])
|
||||||
def search():
|
def search():
|
||||||
data = json.loads(request.data)
|
data = json.loads(request.data)
|
||||||
return jsonify(app.mainSearch(data['term']))
|
result = app.search(data['term'], data['type'], data['start'], data['nb'])
|
||||||
|
result['type'] = data['type']
|
||||||
|
return jsonify(result)
|
||||||
|
|
||||||
@server.route('/download', methods=['POST'])
|
@server.route('/download', methods=['POST'])
|
||||||
def download():
|
def download():
|
||||||
|
|
Loading…
Reference in a new issue