peimelo/controlled_health_api

View on GitHub
app/controllers/concerns/all_heights.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module AllHeights
  private

  def heights_for_range
    @current_account.heights_sorted('date', 'desc')
                    .pluck(:date, :value)
  end
end