You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
587 B
21 lines
587 B
from couchpotato.core.helpers.request import jsonified
|
|
from flask.blueprints import Blueprint
|
|
|
|
api = Blueprint('api', __name__)
|
|
|
|
def addApiView(route, func, static = False):
|
|
api.add_url_rule(route + ('' if static else '/'), endpoint = route if route else 'index', view_func = func)
|
|
|
|
""" Api view """
|
|
def index():
|
|
from couchpotato import app
|
|
|
|
routes = []
|
|
for route, x in sorted(app.view_functions.iteritems()):
|
|
if route[0:4] == 'api.':
|
|
routes += [route[4:]]
|
|
|
|
return jsonified({'routes': routes})
|
|
|
|
addApiView('', index)
|
|
addApiView('default', index)
|
|
|