19 lines
322 B
Ruby
19 lines
322 B
Ruby
object @history
|
|
|
|
attributes :music_session_id, :description, :genres
|
|
|
|
child(:user => :creator) {
|
|
attributes :name, :photo_url
|
|
}
|
|
|
|
child(:band => :band) {
|
|
attributes :name, :photo_url
|
|
}
|
|
|
|
child(:music_session_user_histories => :users) {
|
|
attributes :instruments
|
|
|
|
child(:user => :user) {
|
|
attributes :name, :photo_url
|
|
}
|
|
} |