Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kawa-kokosowa committed Sep 29, 2016
1 parent 14a36f0 commit 5fe22e1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Expand Up @@ -41,13 +41,15 @@ class Users(flask_restful.Resource):

@validate_json
def post(self, json_request):
pass
json_request["email"]
json_request["password"]

@validate_json
def put(self, json_request):
pass
json_request.get("email")
json_request.get("password")

@validate_json
def get(self, json_request):
pass
json_request["email"]
```

0 comments on commit 5fe22e1

Please sign in to comment.