blob: 861377f6a4290e6551de2e49e5b6f9337b34fb81 (
plain)
1
2
3
4
5
6
7
8
|
class PagerGroup < ActiveRecord::Base
attr_accessible :sip_account_id, :callback_url
has_many :pager_group_destinations, :dependent => :destroy
belongs_to :sip_account
validates_presence_of :sip_account_id
end
|