Update docs

This commit is contained in:
2026-03-21 01:36:59 -05:00
parent e83b958aa5
commit 3261cae37f
25 changed files with 127 additions and 62 deletions
@@ -0,0 +1,24 @@
<?php
declare(strict_types=1);
namespace MageSail\Magesail\Controller\Adminhtml\Settings;
use Magento\Backend\App\Action;
use Magento\Framework\App\Action\HttpGetActionInterface;
use Magento\Framework\Controller\ResultInterface;
/**
* Entry point from MageSail admin menu; forwards to core system config for section {@see system.xml}.
*/
class Index extends Action implements HttpGetActionInterface
{
public const ADMIN_RESOURCE = 'MageSail_Magesail::config';
public function execute(): ResultInterface
{
return $this->resultRedirectFactory->create()->setPath(
'adminhtml/system_config/edit',
['section' => 'magesail', '_current' => false]
);
}
}