mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
257 B
Ruby
9 lines
257 B
Ruby
total = @events.except(:offset, :limit, :order).count
|
|
|
|
json.array!(@events) do |event|
|
|
json.partial! 'api/events/event', event: event
|
|
json.event_image_small event.event_image.attachment.small.url if event.event_image
|
|
|
|
json.nb_total_events total
|
|
end
|