We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The Core delegates all requests to a storage object, that needs to implement the following signatures:
def delete(id, params={}) end def get(id, params={}) end def head(id, params={}) end def post(data, params={}) end def put(id, data, params={}) end # Optional: def accepts end def formats end def valid?(data) end
Storage classes: