1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Always clear the cache for wrestlers when the match changes

This commit is contained in:
2023-01-09 19:15:51 -05:00
parent 22f5733160
commit ffb7d8be5b

View File

@@ -8,13 +8,13 @@ class Match < ActiveRecord::Base
after_update :after_finished_actions, :if => :saved_change_to_finished? or :saved_change_to_winner_id? or :saved_change_to_win_type? or :saved_change_to_score?
def after_finished_actions
if self.w1
wrestler1.touch
end
if self.w2
wrestler2.touch
end
if self.finished == 1 && self.winner_id != nil
if self.w1
wrestler1.touch
end
if self.w2
wrestler2.touch
end
if self.mat
self.mat.assign_next_match
end