Use generic copy on messaging Integrations screens.
Deploy Ladill Frontdesk / deploy (push) Has been cancelled

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 8f555bf2bf
commit 53d0e6c2a9
3 changed files with 22 additions and 21 deletions
@@ -112,7 +112,7 @@ class IntegrationController extends Controller
return back()->withInput()->with('error', $result['error'] ?? 'Could not save SMS credentials.');
}
return back()->with('success', 'Ladill SMS connected. Host alerts will use your key and sender ID.');
return back()->with('success', 'SMS credentials saved.');
}
public function disconnectSms(Request $request, MessagingCredentialsService $credentials): RedirectResponse
@@ -121,7 +121,7 @@ class IntegrationController extends Controller
$organization = $this->organization($request);
$credentials->disconnectSms($organization);
return back()->with('success', 'Ladill SMS disconnected.');
return back()->with('success', 'SMS disconnected.');
}
public function saveBird(Request $request, MessagingCredentialsService $credentials): RedirectResponse
@@ -147,10 +147,10 @@ class IntegrationController 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. Host email alerts will use your key and from address.');
return back()->with('success', 'Email credentials saved.');
}
public function disconnectBird(Request $request, MessagingCredentialsService $credentials): RedirectResponse
@@ -159,7 +159,7 @@ class IntegrationController extends Controller
$organization = $this->organization($request);
$credentials->disconnectBird($organization);
return back()->with('success', 'Ladill Bird disconnected.');
return back()->with('success', 'Email disconnected.');
}
public function previewSenders(Request $request, CustomerSmsClient $sms): JsonResponse