mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
259 B
Ruby
9 lines
259 B
Ruby
# frozen_string_literal: true
|
|
|
|
max_schedules = @payment_schedules.except(:offset, :limit, :order).count
|
|
|
|
json.array! @payment_schedules do |ps|
|
|
json.max_length max_schedules
|
|
json.partial! 'api/payment_schedules/payment_schedule', payment_schedule: ps
|
|
end
|