From b44203b800e39dd828ec8d5992ccc3964e45c344 Mon Sep 17 00:00:00 2001 From: Robbie Averill Date: Thu, 16 May 2019 10:30:11 +1200 Subject: [PATCH] DOCS Fix formatting endpoint descriptions [ci skip] --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37b1fc7..5e4a321 100644 --- a/README.md +++ b/README.md @@ -108,9 +108,9 @@ Similarly, `PUT` or `POST` requests will have fields transformed from the alias - `PUT /api/v1/(ClassName)/(ID)/(Relation)` - updates a relation, replacing the existing record(s) (NOT IMPLEMENTED YET) - `POST /api/v1/(ClassName)/(ID)/(Relation)` - updates a relation, appending to the existing record(s) (NOT IMPLEMENTED YET) - - DELETE /api/v1/(ClassName)/(ID) - deletes a database record (NOT IMPLEMENTED YET) - - DELETE /api/v1/(ClassName)/(ID)/(Relation)/(ForeignID) - remove the relationship between two database records, but don't actually delete the foreign object (NOT IMPLEMENTED YET) - - POST /api/v1/(ClassName)/(ID)/(MethodName) - executes a method on the given object (e.g, publish) + - `DELETE /api/v1/(ClassName)/(ID)` - deletes a database record (NOT IMPLEMENTED YET) + - `DELETE /api/v1/(ClassName)/(ID)/(Relation)/(ForeignID)` - remove the relationship between two database records, but don't actually delete the foreign object (NOT IMPLEMENTED YET) + - `POST /api/v1/(ClassName)/(ID)/(MethodName)` - executes a method on the given object (e.g, publish) ## Search