12 lines
318 B
Ruby
12 lines
318 B
Ruby
object @recording
|
|
|
|
attributes :id, :band, :created_at, :duration
|
|
|
|
child(:recorded_tracks => :recorded_tracks) {
|
|
attributes :id, :fully_uploaded, :url, :client_track_id, :client_id, :instrument_id
|
|
|
|
child(:user => :user) {
|
|
attributes :id, :first_name, :last_name, :city, :state, :country, :photo_url
|
|
}
|
|
}
|