mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-08 00:51:20 +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(
|
RecoveryStep _getCurrentRecoveryStep(
|
||||||
final String? serverProviderToken,
|
final String? serverProviderToken,
|
||||||
final String? cloudflareToken,
|
final String? dnsProviderToken,
|
||||||
final ServerDomain serverDomain,
|
final ServerDomain serverDomain,
|
||||||
final ServerHostingDetails? serverDetails,
|
final ServerHostingDetails? serverDetails,
|
||||||
) {
|
) {
|
||||||
|
@ -239,7 +239,7 @@ class ServerInstallationRepository {
|
||||||
return matches;
|
return matches;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> createDkimRecord(final ServerDomain cloudFlareDomain) async {
|
Future<void> createDkimRecord(final ServerDomain domain) async {
|
||||||
final ServerApi api = ServerApi();
|
final ServerApi api = ServerApi();
|
||||||
|
|
||||||
late DnsRecord record;
|
late DnsRecord record;
|
||||||
|
@ -252,7 +252,7 @@ class ServerInstallationRepository {
|
||||||
|
|
||||||
await ProvidersController.currentDnsProvider!.setDnsRecord(
|
await ProvidersController.currentDnsProvider!.setDnsRecord(
|
||||||
record,
|
record,
|
||||||
cloudFlareDomain,
|
domain,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,7 @@ class InitializingPage extends StatelessWidget {
|
||||||
steps: const [
|
steps: const [
|
||||||
'Hosting',
|
'Hosting',
|
||||||
'Server Type',
|
'Server Type',
|
||||||
'CloudFlare',
|
'DNS Provider',
|
||||||
'Backblaze',
|
'Backblaze',
|
||||||
'Domain',
|
'Domain',
|
||||||
'User',
|
'User',
|
||||||
|
|
Loading…
Reference in a new issue