Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
samfcmc committed Aug 28, 2014
1 parent f7cf348 commit 41a67a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ fenix_python_sdk

* GET /person/payments -> <code>get_person_payments(user)</code>

* PUT /person/evaluations/{id} -> <code>enrol_in_evaluation(id, user, [enrol_action])</code>
* PUT /person/evaluations/{id} -> <code>enrol_in_evaluation(user, id, [enrol_action])</code>

* GET /person/curriculum -> <code>get_person_curriculum(user)</code>

Expand Down
4 changes: 0 additions & 4 deletions fenixedu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,6 @@ def enrol_person_in_evaluation(self, user, id, enrol_action = None):
r = self._api_private_request(endpoints.PERSON_EVALUATION, params = params, method = Requests.PUT, user=user, endpoint_params={'id': id})
return r

def get_person_evaluation(self, user, id):
r = self._api_private_request(endpoints.PERSON_EVALUATION, user=user, endpoint_params={'id': id})
return r

def get_person_payments(self, user):
r = self._api_private_request(endpoints.PERSON + '/' + endpoints.PAYMENTS, user=user)
return r.json()

0 comments on commit 41a67a7

Please sign in to comment.