jam-cloud/web/app/views/api_users/band_following_index.rabl

21 lines
299 B
Ruby

collection @user.band_followings
node :band_id do |following|
following.id
end
node :name do |following|
following.name
end
node :location do |following|
following.location
end
node :photo_url do |following|
following.photo_url
end
node :logo_url do |following|
following.logo_url
end