gitea/src/3d4ed24c-8250-4fcf-824f-a5f.../code.power

19 lines
346 B
Plaintext

/**
* Get instance's global settings for Attachment.
*
* @return object|null
* @since 3.2.0
**/
public function get(): ?object
{
// Build the request path.
$path = "/settings/attachment";
// Send the get request.
return $this->response->get(
$this->http->get(
$this->uri->get($path)
)
);
}