summaryrefslogtreecommitdiff
path: root/app/models/hunt_group.rb
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-03-07 15:22:06 -0500
committerPeter Kozak <spag@golwen.net>2013-03-07 15:22:06 -0500
commit800cf2f11ab5d7f03a52d5ca35e893654ef520ab (patch)
tree45c54cd39672ed91c737cb474cf71b139a4569a6 /app/models/hunt_group.rb
parent8be445e95ebe8c805dcfb1af0c02e3a3567aab18 (diff)
call forwards view added
Diffstat (limited to 'app/models/hunt_group.rb')
-rw-r--r--app/models/hunt_group.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/hunt_group.rb b/app/models/hunt_group.rb
index 7338606..93279ae 100644
--- a/app/models/hunt_group.rb
+++ b/app/models/hunt_group.rb
@@ -2,7 +2,8 @@ class HuntGroup < ActiveRecord::Base
attr_accessible :name, :strategy, :seconds_between_jumps, :phone_numbers_attributes
belongs_to :tenant, :touch => true
- has_many :call_forwards, :as => :destinationable, :dependent => :destroy
+ has_many :destrination_call_forwards, :as => :destinationable, :dependent => :destroy
+ has_many :call_forwards, :as => :call_forwardable, :dependent => :destroy
validates_uniqueness_of :name, :scope => :tenant_id,
:allow_nil => true, :allow_blank => true