Files
CouchPotatoServer/couchpotato/api/__init__.py
T
2011-04-11 15:37:41 +02:00

21 lines
534 B
Python

from couchpotato.core.helpers.request import jsonified
from flask import Module
api = Module(__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)