feat: Add support for API key authentication in Twilio (#7523)

Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
Pranav Raj S
2023-07-14 19:20:54 -07:00
committed by GitHub
parent 1a81245987
commit ec65b43993
6 changed files with 93 additions and 22 deletions

View File

@@ -0,0 +1,5 @@
class AddApiKeySidToTwilioSms < ActiveRecord::Migration[7.0]
def change
add_column :channel_twilio_sms, :api_key_sid, :string
end
end