Routes.php 304 B

123456789101112
  1. <?php
  2. use Opentalent\OtAdmin\Controller\SiteController;
  3. return [
  4. // Create a new organization's website
  5. 'site_create' => [
  6. 'path' => '/site-create',
  7. 'target' => SiteController::class . '::createSiteAction',
  8. 'access' => 'public'
  9. ],
  10. ];