Files
fizzy/app/models/card/engagement.rb
T
2025-08-12 17:58:12 -05:00

6 lines
176 B
Ruby

class Card::Engagement < ApplicationRecord
belongs_to :card, class_name: "::Card", touch: true
validates :status, presence: true, inclusion: { in: %w[doing on_deck] }
end