You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
312 B
15 lines
312 B
class Transgression < ActiveRecord::Base
|
|
SIN_TYPES = [
|
|
'Gluttony', 'Greed', 'Anger', 'Pride',
|
|
'Lust', 'Sloth', 'Envy'
|
|
]
|
|
|
|
validates :description, presence: true
|
|
validates :user, presence: true
|
|
validates :sin_type, inclusion: { in: SIN_TYPES }
|
|
|
|
belongs_to :user
|
|
end
|
|
|
|
# Transgression::SIN_TYPES
|