chore: restrict TwilioSms attrs to SMS medium

This commit is contained in:
Muhsin
2026-04-14 14:36:44 +04:00
parent a77a1c8ab4
commit b8df28c8a3
@@ -33,7 +33,7 @@ module Enterprise::Api::V1::Accounts::InboxesController
def get_channel_attributes(channel_type)
attrs = super
attrs += [:voice_enabled, :api_key_sid, :api_key_secret] if channel_type == 'Channel::TwilioSms'
attrs += [:voice_enabled, :api_key_sid, :api_key_secret] if channel_type == 'Channel::TwilioSms' && @inbox&.channel&.medium == 'sms'
attrs
end