summaryrefslogtreecommitdiff
path: root/app/models/freeswitch_fifo_outbound.rb
blob: 029c21d6d4744e1b548e65d26d0202737885cde9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class FreeswitchFifoOutbound < ActiveRecord::Base
  self.table_name = 'fifo_outbound'

  # Makes sure that this is a readonly model.
  def readonly?
    return true
  end
 
  # Prevent objects from being destroyed
  def before_destroy
    raise ActiveRecord::ReadOnlyRecord
  end

  # Prevent objects from being deleted
  def self.delete_all
    raise ActiveRecord::ReadOnlyRecord
  end

  # Prevent objects from being deleted
  def delete
    raise ActiveRecord::ReadOnlyRecord
  end
end