Use generic copy on messaging Integrations screens.
Deploy Ladill Events / deploy (push) Successful in 44s

Drop wallet/brand marketing language so credential setup reads as neutral configuration.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-12 18:40:05 +00:00
co-authored by Cursor
parent d14180b335
commit 407f1364fb
5 changed files with 26 additions and 25 deletions
@@ -42,7 +42,7 @@ class IntegrationsController extends Controller
return back()->withInput()->with('error', $result['error'] ?? 'Could not save SMS credentials.');
}
return back()->with('success', 'Ladill SMS connected. Outbound attendee SMS will use your key and sender ID.');
return back()->with('success', 'SMS credentials saved.');
}
public function disconnectSms(MessagingCredentialsService $credentials): RedirectResponse
@@ -50,7 +50,7 @@ class IntegrationsController extends Controller
$account = ladill_account();
$credentials->disconnectSms((string) $account->public_id);
return back()->with('success', 'Ladill SMS disconnected.');
return back()->with('success', 'SMS disconnected.');
}
public function saveBird(Request $request, MessagingCredentialsService $credentials): RedirectResponse
@@ -72,10 +72,10 @@ class IntegrationsController extends Controller
);
if (! ($result['ok'] ?? false)) {
return back()->withInput()->with('error', $result['error'] ?? 'Could not save Bird credentials.');
return back()->withInput()->with('error', $result['error'] ?? 'Could not save email credentials.');
}
return back()->with('success', 'Ladill Bird connected. Outbound attendee email will use your key and from address.');
return back()->with('success', 'Email credentials saved.');
}
public function disconnectBird(MessagingCredentialsService $credentials): RedirectResponse
@@ -83,7 +83,7 @@ class IntegrationsController extends Controller
$account = ladill_account();
$credentials->disconnectBird((string) $account->public_id);
return back()->with('success', 'Ladill Bird disconnected.');
return back()->with('success', 'Email disconnected.');
}
public function previewSenders(Request $request, CustomerSmsClient $sms): JsonResponse