7 lines
232 B
Ruby
7 lines
232 B
Ruby
@speakers.each do |speaker|
|
|
json.set! speaker.user_id do
|
|
json.extract! speaker, :twitter, :github, :biography, :public_email, :organisation, :last_name, :first_name
|
|
json.picture speaker.picture.serializable_hash
|
|
end
|
|
end
|