10 lines
184 B
Ruby
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
|