ministryofjustice/atet

View on GitHub
app/forms/diversities/claim_type_form.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Diversities
  class ClaimTypeForm < Form
    CLAIM_TYPES = ["unfair-dismissal-or-constructive-dismissal", "discrimination", "redundancy-payment",
                   "other-payments-you-are-owed", "other-complaints"].freeze
    attribute :claim_type, :string
  end
end