mirror of
https://gitlab.com/RemixDev/deemix-gui-pyweb.git
synced 2024-12-28 18:36:07 +00:00
Added search continuous scrolling
This commit is contained in:
parent
ff5153cba3
commit
83ebf6bdad
|
@ -37,10 +37,17 @@ def initialize():
|
|||
response = {'status': 'error'}
|
||||
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'])
|
||||
def search():
|
||||
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'])
|
||||
def download():
|
||||
|
|
Loading…
Reference in a new issue