18F/micropurchase

View on GitHub
app/models/auction_types.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AuctionTypes
  def to_a
    # reverse-alphabetize to ensure 'sealed-bid' is before 'reverse'
    Auction.types.keys.to_a.sort.reverse
  end
end