mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
chg: [titles] add api to get all titles
This commit is contained in:
parent
d31bc7ef58
commit
e83323c672
1 changed files with 11 additions and 0 deletions
|
@ -19,6 +19,7 @@ from lib.ConfigLoader import ConfigLoader
|
|||
from lib import crawlers
|
||||
from lib import Users
|
||||
from lib.objects import Items
|
||||
from lib.objects import Titles
|
||||
from lib import Tag
|
||||
from lib import Tracker
|
||||
|
||||
|
@ -689,6 +690,16 @@ def import_json_item():
|
|||
def v1_ping():
|
||||
return Response(json.dumps({'status': 'pong'}), mimetype='application/json'), 200
|
||||
|
||||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||
# # # # # # # # # # # # # OTHERS # # # # # # # # # # # # # # # # #
|
||||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||
|
||||
|
||||
@restApi.route("api/v1/titles/download", methods=['GET'])
|
||||
@token_required('read_only')
|
||||
def objects_titles_downloads():
|
||||
return jsonify(Titles.Titles().get_contents_ids())
|
||||
|
||||
|
||||
# ========= REGISTRATION =========
|
||||
app.register_blueprint(restApi, url_prefix=baseUrl)
|
||||
|
|
Loading…
Reference in a new issue