mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-17 22:29:15 +00:00
Merge pull request 'refactor: Remove mentions of cloudflare from general variables' (#323) from dkim-record-naming into master
Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/pulls/323 Reviewed-by: Inex Code <inex.code@selfprivacy.org>
This commit is contained in:
commit
1642cb907d
|
@ -155,7 +155,7 @@ class ServerInstallationRepository {
|
|||
|
||||
RecoveryStep _getCurrentRecoveryStep(
|
||||
final String? serverProviderToken,
|
||||
final String? cloudflareToken,
|
||||
final String? dnsProviderToken,
|
||||
final ServerDomain serverDomain,
|
||||
final ServerHostingDetails? serverDetails,
|
||||
) {
|
||||
|
@ -239,7 +239,7 @@ class ServerInstallationRepository {
|
|||
return matches;
|
||||
}
|
||||
|
||||
Future<void> createDkimRecord(final ServerDomain cloudFlareDomain) async {
|
||||
Future<void> createDkimRecord(final ServerDomain domain) async {
|
||||
final ServerApi api = ServerApi();
|
||||
|
||||
late DnsRecord record;
|
||||
|
@ -252,7 +252,7 @@ class ServerInstallationRepository {
|
|||
|
||||
await ProvidersController.currentDnsProvider!.setDnsRecord(
|
||||
record,
|
||||
cloudFlareDomain,
|
||||
domain,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ class InitializingPage extends StatelessWidget {
|
|||
steps: const [
|
||||
'Hosting',
|
||||
'Server Type',
|
||||
'CloudFlare',
|
||||
'DNS Provider',
|
||||
'Backblaze',
|
||||
'Domain',
|
||||
'User',
|
||||
|
|
Loading…
Reference in a new issue