appease the paw patrol

This commit is contained in:
Georg Gadinger 2023-10-18 21:57:09 +02:00
parent 8a26232fe6
commit a85ce45b25
1 changed files with 3 additions and 3 deletions

View File

@ -14,16 +14,16 @@ class Inbox < ApplicationRecord
end
after_create do
user.touch(:inbox_updated_at)
user.touch(:inbox_updated_at) # rubocop:disable Rails/SkipsModelValidations
end
after_update do
user.touch(:inbox_updated_at)
user.touch(:inbox_updated_at) # rubocop:disable Rails/SkipsModelValidations
end
after_destroy do
# user might not exist at this point (account deleted, records are cleaned up async)
user&.touch(:inbox_updated_at)
user&.touch(:inbox_updated_at) # rubocop:disable Rails/SkipsModelValidations
end
def answer(answer_content, user)