Added Backend Add code to WebUI.

This commit is contained in:
Abdulmhsen B. A. A
2024-05-06 21:32:48 +03:00
parent 70f45a863e
commit 9505fe4607
6 changed files with 417 additions and 20 deletions

View File

@@ -17,6 +17,6 @@ final class Supported
#[Get(self::URL . '[/]', name: 'system.supported')]
public function __invoke(iRequest $request): iResponse
{
return api_response(HTTP_STATUS::HTTP_OK, ['supported' => array_keys(Config::get('supported'))]);
return api_response(HTTP_STATUS::HTTP_OK, array_keys(Config::get('supported')));
}
}