mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- create Admin, Analytics, Auth, Fediverse and Install modules in the root modules/ folder - rename ActivityPub to Fediverse
19 lines
441 B
PHP
19 lines
441 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Install\Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class Install extends BaseConfig
|
|
{
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Install gateway
|
|
* --------------------------------------------------------------------------
|
|
* Defines a base route for instance installation
|
|
*/
|
|
public string $gateway = 'cp-install';
|
|
}
|