chore: add custom_rdap_servers.yaml in .gitignore file

This commit is contained in:
Maël Gangloff 2024-11-03 13:19:38 +01:00
parent 500b901b7a
commit 1ac11e35b4
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629
3 changed files with 1 additions and 7 deletions

1
.gitignore vendored
View File

@ -51,3 +51,4 @@ phpstan.neon
public/images/*.png
public/content/*.md
public/favicon.ico
config/app/custom_rdap_servers.yaml

View File

@ -46,12 +46,6 @@ final readonly class UpdateRdapServersHandler
$throws[] = $throwable;
}
try {
$this->RDAPService->updateRDAPServersFromIANA();
} catch (\Throwable $throwable) {
$throws[] = $throwable;
}
try {
$this->RDAPService->updateRDAPServersFromFile($this->bag->get('custom_rdap_servers_file'));
} catch (\Throwable $throwable) {

View File

@ -60,7 +60,6 @@ class NamecheapProvider extends AbstractProvider
'Years' => 1, // Number of years to register
'AddFreeWhoisguard' => 'yes', // Adds free domain privacy for the domain
'WGEnabled' => 'yes', // Enables free domain privacy for the domain
'IsPremiumDomain' => 'False',
], $domainAddresses), $dryRun);
}