需要將Twillio整合到用於預約的導軌應用程序中。我正在嘗試整合twilio發送預約提醒。我有兩個型號用戶&預約。twillio與導軌的整合3.2
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation, :remember_me, :provider, :uid, :name,
has_many :appointments, dependent: :destroy
end
class Appointment < ActiveRecord::Base
attr_accessible :discription, :appointment_time, :reserve_time, :reserve_date
belongs_to :usermodel
end
,現在有來自Twillio的約會提醒,我想integerate:https://github.com/twilio/twilio-ruby
的文檔工作,只有控制器,它是模糊的,我是否需要創建一個新的模型,並有關係用戶或約會模型? 真的需要一些幫助,請
非常感謝史蒂文,我希望文本在預約時間前半小時發送。例如:預約時間爲下午4:00時,在下午3:00發送文本。 – magnetic
有沒有辦法在rails中的特定日期和時間觸發該操作。 – magnetic
使用類似[sidekiq](https://github.com/mperham/sidekiq/wiki/Scheduled-Jobs)的方式來調查後臺作業。 –