def delete(self, role_id): """ .. http:delete:: /roles/1 Delete a role **Example request**: .. sourcecode:: http DELETE /roles/1 HTTP/1.1 Host: example.com Accept: application/json, text/javascript **Example response**: .. sourcecode:: http HTTP/1.1 200 OK Vary: Accept Content-Type: text/javascript { "message": "ok" } :reqheader Authorization: OAuth token to authenticate :statuscode 200: no error :statuscode 403: unauthenticated """ service.delete(role_id) return {"message": "ok"}
def delete(self, role_id): """ .. http:delete:: /roles/1 Delete a role **Example request**: .. sourcecode:: http DELETE /roles/1 HTTP/1.1 Host: example.com Accept: application/json, text/javascript **Example response**: .. sourcecode:: http HTTP/1.1 200 OK Vary: Accept Content-Type: text/javascript { "message": "ok" } :reqheader Authorization: OAuth token to authenticate :statuscode 200: no error :statuscode 403: unauthenticated """ service.delete(role_id) return {'message': 'ok'}