Skip to content

Instantly share code, notes, and snippets.

@db0company
Created May 12, 2014 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save db0company/e8dcd72fec0614553074 to your computer and use it in GitHub Desktop.
Save db0company/e8dcd72fec0614553074 to your computer and use it in GitHub Desktop.
@action(methods=['GET', 'POST', 'DELETE'])
def followers(self, request, player):
[...]
if request.method == 'GET':
"""
Get the players who follow this player
"""
[...]
elif request.method == 'POST':
"""
Follow this player
"""
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment