summaryrefslogtreecommitdiff
path: root/docs/src/Interfaces/API.md
diff options
context:
space:
mode:
authorhaturatu <taro@eyes4you.org>2025-02-22 23:20:55 +0900
committerhaturatu <taro@eyes4you.org>2025-02-22 23:20:55 +0900
commit9345907a5c1737c6c2c1f8eba52a568035b08493 (patch)
tree50f0c68436e4eba8e7a72cf9876a577d0c4c6340 /docs/src/Interfaces/API.md
parenta9cdbc4e7fbdd14922ef5c96cc7a285b153bf947 (diff)
fix: all hange s\/github.com\/ponzu-cms/github.com\/haturatu\/g
Diffstat (limited to 'docs/src/Interfaces/API.md')
-rw-r--r--docs/src/Interfaces/API.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/Interfaces/API.md b/docs/src/Interfaces/API.md
index 1d9ab82..c2ff055 100644
--- a/docs/src/Interfaces/API.md
+++ b/docs/src/Interfaces/API.md
@@ -13,7 +13,7 @@ life-cycle.
## Interfaces
-### [api.Createable](https://godoc.org/github.com/ponzu-cms/ponzu/system/api#Createable)
+### [api.Createable](https://godoc.org/github.com/haturatu/ponzu/system/api#Createable)
Externalable enables 3rd-party clients (outside the CMS) to send content via a
`multipart/form-data` encoded `POST` request to a specific endpoint:
`/api/content/create?type=<Type>`. When `api.Createable` is implemented, content
@@ -42,7 +42,7 @@ func (p *Post) Create(res http.ResponseWriter, req *http.Request) error {
---
-### [api.Updateable](https://godoc.org/github.com/ponzu-cms/ponzu/system/api#Updateable)
+### [api.Updateable](https://godoc.org/github.com/haturatu/ponzu/system/api#Updateable)
Updateable enables 3rd-party clients (outside the CMS) to update existing content
via a `multipart/form-data` encoded `POST` request to a specific endpoint:
`/api/content/update?type=<Type>&id=<id>`. Request validation should be employed
@@ -65,7 +65,7 @@ func (p *Post) Update(res http.ResponseWriter, req *http.Request) error {
---
-### [api.Deleteable](https://godoc.org/github.com/ponzu-cms/ponzu/system/api#Deleteable)
+### [api.Deleteable](https://godoc.org/github.com/haturatu/ponzu/system/api#Deleteable)
Updateable enables 3rd-party clients (outside the CMS) to delete existing content
via a `multipart/form-data` encoded `POST` request to a specific endpoint:
`/api/content/delete?type=<Type>&id=<id>`. Request validation should be employed
@@ -88,7 +88,7 @@ func (p *Post) Delete(res http.ResponseWriter, req *http.Request) error {
---
-### [api.Trustable](https://godoc.org/github.com/ponzu-cms/ponzu/system/api#Trustable)
+### [api.Trustable](https://godoc.org/github.com/haturatu/ponzu/system/api#Trustable)
Trustable provides a way for submitted content (via `api.Createable`) to bypass
the `editor.Mergeable` step in which CMS end-users must manually click the
"Approve" button in order for content to be put in the "Public" section and access