X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4ed56f84dedf9da88708fc2c4aef3b0b11f30825..06c0fd3da81bed89e12e7a30cfc6ff33ddecd075:/apps/api/urls.py diff --git a/apps/api/urls.py b/apps/api/urls.py index c5b0986d..0ae14203 100644 --- a/apps/api/urls.py +++ b/apps/api/urls.py @@ -2,7 +2,6 @@ __author__="lreqc" __date__ ="$2009-09-17 16:16:54$" from django.conf.urls.defaults import * - from api.resources import * FORMAT = r"\.(?Pxml|json|yaml)" @@ -18,8 +17,13 @@ urlpatterns = patterns('', # url(r'^hello\.(?P.+)$', hello_resource), # Toolbar - url(r'^toolbar/buttons$', toolbar_buttons, {'emitter_format': 'json'}), - url(r'^toolbar/scriptlets$', scriptlets, {'emitter_format': 'json'}), + url(r'^toolbar/buttons$', toolbar_buttons, {'emitter_format': 'json'}, + name="toolbar_buttons" + ), + + url(r'^toolbar/scriptlets$', scriptlets, {'emitter_format': 'json'}, + name="toolbar_scriptlets" + ), # Pull requests url(r"^pull-requests$", pullrequest_collection,