You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$output->warn('Not all domains in this project are managed by Ymir. The following DNS record(s) need to be manually added to your DNS server for these domains to work:');
73
-
$output->newLine();
74
-
$output->table(
75
-
['Type', 'Name', 'Value'],
76
-
array_map(function (string$unmanagedDomain) use ($vanityDomainName) {
if (!array_key_exists('domain', $this->projectConfiguration->getEnvironment($environment))) {
83
67
$output->newLine();
84
68
$output->writeln(sprintf('<comment>Note:</comment> You cannot send emails using the "<comment>ymirsites.com</comment>" domain. Please use the "<comment>%s</comment>" command to add an email address or domain for sending emails.', CreateEmailIdentityCommand::NAME));
$output->warn('Not all domains in this project are managed by Ymir. The following DNS record(s) need to be manually added to your DNS server for these domains to work:');
95
+
$output->newLine();
96
+
$output->table(
97
+
['Type', 'Name', 'Value'],
98
+
$unmanagedDomains->map(function (string$unmanagedDomain) use ($vanityDomainName) {
0 commit comments