status_pin.rb 653 B

1234567891011121314151617181920212223242526
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: status_pins
  5. #
  6. # id :bigint(8) not null, primary key
  7. # account_id :bigint(8) not null
  8. # status_id :bigint(8) not null
  9. # created_at :datetime not null
  10. # updated_at :datetime not null
  11. #
  12. class StatusPin < ApplicationRecord
  13. belongs_to :account
  14. belongs_to :status
  15. validates_with StatusPinValidator
  16. after_destroy :invalidate_cleanup_info
  17. def invalidate_cleanup_info
  18. return unless status&.account_id == account_id && account.local?
  19. account.statuses_cleanup_policy&.invalidate_last_inspected(status, :unpin)
  20. end
  21. end