rubyforgood/casa

View on GitHub
app/helpers/court_orders_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module CourtOrdersHelper
  def court_order_select_options
    CaseCourtOrder.implementation_statuses.map do |status|
      [status[0].humanize, status[0]]
    end
  end
end