otwarchive-sunsetarchive/app/models/fannish_next_of_kin.rb
2026-03-17 01:16:49 -04:00

10 lines
199 B
Ruby
Executable file

class FannishNextOfKin < ApplicationRecord
belongs_to :user
belongs_to :kin, class_name: "User"
validates :user, :kin, :kin_email, presence: true
def kin_name
kin.try(:login)
end
end