clarion/app/views/api/speakers/index.jbuilder

7 lines
273 B
Plaintext
Raw Normal View History

2015-10-17 17:28:57 +03:00
@speakers.each do |speaker|
2015-10-17 23:34:35 +03:00
json.set! speaker.user_id do
2024-09-23 13:24:42 +03:00
json.extract! speaker, :twitter, :github, :biography, :public_email, :organisation, :last_name, :first_name, :name
json.picture rails_blob_url(speaker.picture.variant(resize_to_fill: [100, 100]))
2015-10-17 17:28:57 +03:00
end
2015-10-08 02:34:19 +03:00
end