Beispiel #1
0
 def update(self, data, **kwargs):
     raise exceptions.NotImplementedMethod('Updating is not implemented')
Beispiel #2
0
 def delete(self, id):
     raise exceptions.NotImplementedMethod('Deleting is not implemented')
Beispiel #3
0
 def get_detail(self, id):
     raise exceptions.NotImplementedMethod('Getting object is not implemented.')
 def get_list(self, filters=None, sorting=None, pagination=None):
     raise exceptions.NotImplementedMethod(
         'Getting list is not implemented.')
 def create(self, data, **kwargs):
     raise exceptions.NotImplementedMethod('Creating is not implemented.')
Beispiel #6
0
 def update(self, id, **data):
     raise exceptions.NotImplementedMethod('Updating is not implemented')