diff options
-rw-r--r-- | beweb/beweb/controllers.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/beweb/beweb/controllers.py b/beweb/beweb/controllers.py index 5b458d8..564c43b 100644 --- a/beweb/beweb/controllers.py +++ b/beweb/beweb/controllers.py @@ -12,13 +12,6 @@ def project_tree(project): except KeyError: raise Exception("Unknown project %s" % project) -def expose_resource(html=None): - def exposer(func): - func = turbogears.expose(html=html)(func) - func.expose_resource = True - return func - return exposer - def comment_url(project, bug, comment): return turbogears.url("/project/%s/bug/%s/comment/%s" % (project, bug, comment)) |