mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
Fix issues with first-time account registration
Summary: This worked originally, but the migration broke slightly after the config was deprecated, and there was another minor issue during setup.
This commit is contained in:
parent
f88a2b735d
commit
7dde01df76
2 changed files with 7 additions and 1 deletions
|
@ -45,7 +45,7 @@ $config_map = array(
|
|||
),
|
||||
'PhabricatorAuthProviderPassword' => array(
|
||||
'enabled' => 'auth.password-auth-enabled',
|
||||
'enabled-default' => true,
|
||||
'enabled-default' => false,
|
||||
'registration' => false,
|
||||
'type' => 'password',
|
||||
'domain' => 'self',
|
||||
|
|
|
@ -442,6 +442,12 @@ final class PhabricatorAuthRegisterController
|
|||
|
||||
private function loadSetupAccount() {
|
||||
$provider = new PhabricatorAuthProviderPassword();
|
||||
$provider->attachProviderConfig(
|
||||
id(new PhabricatorAuthProviderConfig())
|
||||
->setShouldAllowRegistration(1)
|
||||
->setShouldAllowLogin(1)
|
||||
->setIsEnabled(true));
|
||||
|
||||
$account = $provider->getDefaultExternalAccount();
|
||||
$response = null;
|
||||
return array($account, $provider, $response);
|
||||
|
|
Loading…
Reference in a new issue