2017-08-25 08:41:18 +09:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 14:58:28 +09:00
|
|
|
|
2017-08-25 08:41:18 +09:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: status_pins
|
|
|
|
#
|
2018-04-23 18:29:17 +09:00
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# status_id :bigint(8) not null
|
2017-08-26 01:50:52 +09:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2017-08-25 08:41:18 +09:00
|
|
|
#
|
|
|
|
|
|
|
|
class StatusPin < ApplicationRecord
|
2018-01-20 04:56:47 +09:00
|
|
|
belongs_to :account
|
|
|
|
belongs_to :status
|
2017-08-25 08:41:18 +09:00
|
|
|
|
|
|
|
validates_with StatusPinValidator
|
2021-08-10 06:11:50 +09:00
|
|
|
|
|
|
|
after_destroy :invalidate_cleanup_info
|
|
|
|
|
|
|
|
def invalidate_cleanup_info
|
|
|
|
return unless status&.account_id == account_id && account.local?
|
|
|
|
|
|
|
|
account.statuses_cleanup_policy&.invalidate_last_inspected(status, :unpin)
|
|
|
|
end
|
2017-08-25 08:41:18 +09:00
|
|
|
end
|