Added initial API endpoint to fetch basic user and associated team information.

This commit is contained in:
Luke Barratt 2014-03-29 00:59:26 +00:00
parent 722f2d87d7
commit 5a9c393791
14 changed files with 180 additions and 3 deletions

View file

@ -0,0 +1,7 @@
module Controllers
module JsonHelpers
def json
@json ||= JSON.parse(response.body)
end
end
end