summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-12 22:54:59 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-12 22:54:59 +0100
commit45ab6dc23ef7d8d6ddf60ab355c2d1b3450f35c8 (patch)
tree4b1429700bdfb237dd3bd98cee19b46a16cb8b38 /app/models
parent1e5c4e80fe27eddf87d0e01ea771e8ea050bc4c1 (diff)
Cache fixes.
Diffstat (limited to 'app/models')
-rw-r--r--app/models/phone.rb2
-rw-r--r--app/models/phone_model.rb2
-rw-r--r--app/models/sip_account.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/app/models/phone.rb b/app/models/phone.rb
index 4865a12..8b41b59 100644
--- a/app/models/phone.rb
+++ b/app/models/phone.rb
@@ -9,7 +9,7 @@ class Phone < ActiveRecord::Base
# Associations
#
belongs_to :phone_model
- belongs_to :phoneable, :polymorphic => true
+ belongs_to :phoneable, :polymorphic => true, :touch => true
has_many :phone_sip_accounts, :dependent => :destroy, :uniq => true, :order => :position
has_many :sip_accounts, :through => :phone_sip_accounts
diff --git a/app/models/phone_model.rb b/app/models/phone_model.rb
index e00e0e3..ac4d4a3 100644
--- a/app/models/phone_model.rb
+++ b/app/models/phone_model.rb
@@ -3,7 +3,7 @@ class PhoneModel < ActiveRecord::Base
# Associations
#
- belongs_to :manufacturer
+ belongs_to :manufacturer, :touch => true
has_many :phones, :dependent => :destroy
diff --git a/app/models/sip_account.rb b/app/models/sip_account.rb
index 5388395..d35f9b4 100644
--- a/app/models/sip_account.rb
+++ b/app/models/sip_account.rb
@@ -10,7 +10,7 @@ class SipAccount < ActiveRecord::Base
# Associations:
#
- belongs_to :sip_accountable, :polymorphic => true
+ belongs_to :sip_accountable, :polymorphic => true, :touch => true
has_many :phone_sip_accounts, :uniq => true
has_many :phones, :through => :phone_sip_accounts