Clarify device registration with type-specific helper text.
Deploy Ladill Frontdesk / deploy (push) Successful in 30s

Replace the static kiosk/printer token message with dynamic hints per device type so reception computers are not misread as getting unattended access.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-28 01:32:01 +00:00
co-authored by Cursor
parent c0bcc3dbaf
commit 8c79c312cf
6 changed files with 71 additions and 18 deletions
@@ -61,7 +61,7 @@ class DeviceController extends Controller
'reception_desk_id' => ['nullable', 'integer'],
]);
$token = in_array($validated['type'], ['kiosk', 'badge_printer', 'qr_scanner'], true)
$token = in_array($validated['type'], config('frontdesk.device_token_types', []), true)
? $devices->generateToken()
: null;