15 lines
333 B
Ruby
15 lines
333 B
Ruby
object @rsvp_request
|
|
|
|
attributes :id, :canceled, :created_at
|
|
|
|
child(:user => :user) {
|
|
attributes :id, :name, :photo_url
|
|
}
|
|
|
|
child(:rsvp_slots => :rsvp_slots) {
|
|
attributes :id, :instrument_id, :proficiency_level, :music_session_id
|
|
|
|
child(:rsvp_requests_rsvp_slots => :rsvp_requests_rsvp_slots) {
|
|
attributes :id, :chosen
|
|
}
|
|
} |