- Implement SmsService class for sending SMS via CPSMS API. - Add SMS sending functionality in the frontend with validation and user feedback. - Create database migrations for SMS message storage and telephony features. - Introduce telephony settings and user-specific configurations for click-to-call functionality. - Enhance user experience with toast notifications for incoming calls and actions.
6 lines
226 B
SQL
6 lines
226 B
SQL
-- Migration 123: Per-user phone credentials for telephony click-to-call
|
|
|
|
ALTER TABLE users
|
|
ADD COLUMN IF NOT EXISTS telefoni_phone_username VARCHAR(128),
|
|
ADD COLUMN IF NOT EXISTS telefoni_phone_password VARCHAR(255);
|