27 lines
328 B
Ruby
27 lines
328 B
Ruby
object @user.band_likes
|
|
|
|
attributes :band_id
|
|
|
|
node :name do |like|
|
|
like.band.name
|
|
end
|
|
|
|
node :city do |like|
|
|
like.band.city
|
|
end
|
|
|
|
node :state do |like|
|
|
like.band.state
|
|
end
|
|
|
|
node :country do |like|
|
|
like.band.country
|
|
end
|
|
|
|
node :photo_url do |like|
|
|
like.band.photo_url
|
|
end
|
|
|
|
node :logo_url do |like|
|
|
like.band.logo_url
|
|
end |