Remove all endpoints that return forms.

This commit is contained in:
sneakypete81 2013-09-07 11:30:27 +01:00
parent adecf7aad0
commit a4add97f59
8 changed files with 0 additions and 90 deletions

View file

@ -80,16 +80,6 @@ class ApiPhoto(ApiBase):
# def delete_source(self, photo, **kwds):
def edit(self, photo, **kwds):
"""
Endpoint: /photo/<id>/edit.json
Returns an HTML form to edit a photo's attributes.
"""
if not isinstance(photo, Photo):
photo = Photo(self._client, {"id": photo})
return photo.edit(**kwds)
def replace(self, photo, photo_file, **kwds):
""" Not yet implemented """
raise NotImplementedError()