Use proper getter for static content API #799

This commit is contained in:
Ramon Gutierrez 2024-04-29 18:07:00 +08:00
parent c9cb6e8b53
commit 2ccd1e0e2d

View file

@ -28,7 +28,7 @@ class StaticContentController extends ApiController
// response
return new ApiResponse(true, '', [
'content' => $content->content,
'content' => $content->getContent(),
]);
}
}