fix(ApiHandler.php): handle PATCH requests in fetchFromPostgREST
This commit is contained in:
parent
d5c31a87d3
commit
c40dcbac2b
4 changed files with 7 additions and 5 deletions
|
@ -50,7 +50,9 @@ abstract class ApiHandler
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($method === "POST" && $body) $options["json"] = $body;
|
if (in_array($method, ["POST", "PATCH"]) && $body) {
|
||||||
|
$options["json"] = $body;
|
||||||
|
}
|
||||||
|
|
||||||
$response = (new Client())->request($method, $url, $options);
|
$response = (new Client())->request($method, $url, $options);
|
||||||
|
|
||||||
|
|
|
@ -215,7 +215,7 @@ class MastodonPostHandler extends ApiHandler
|
||||||
): void {
|
): void {
|
||||||
$data = ["mastodon_url" => $mastodonPostUrl];
|
$data = ["mastodon_url" => $mastodonPostUrl];
|
||||||
|
|
||||||
$this->fetchFromPostgREST("posts", "slug=eq.{$slug}&mastodon_url=is.null", "PATCH", $data);
|
$this->fetchFromPostgREST("posts", "slug=eq.{urlencode($slug)}&mastodon_url=is.null", "PATCH", $data);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function truncateContent(
|
private function truncateContent(
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "1.1.2",
|
"version": "1.1.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "1.1.2",
|
"version": "1.1.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minisearch": "^7.1.2",
|
"minisearch": "^7.1.2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "1.1.2",
|
"version": "1.1.3",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
Loading…
Reference in a new issue