Export grist balance to the api

This commit is contained in:
Trever Fischer
2012-03-03 17:58:48 -05:00
parent c2bdc1e87a
commit 11788ecb34
2 changed files with 8 additions and 2 deletions

View File

@@ -7,5 +7,6 @@ motdHandler = Resource(handlers.MOTDHandler)
urlpatterns = patterns('api',
url(r'^validate/(?P<username>.*)$', whitelistHandler),
url(r'^motd/(?P<username>.*)$', motdHandler)
url(r'^motd/(?P<username>.*)$', motdHandler),
url(r'^balance$', Resource(handlers.BalanceHandler))
)