Files
wedding/app/models/attendee.rb
2020-05-30 09:40:57 +01:00

10 lines
184 B
Ruby

# frozen_string_literal: true
#
# A guest or plus one.
#
class Attendee < ApplicationRecord
scope :diet?, -> { where.not(diet: nil) }
scope :child?, -> { where(child: true) }
end