89de56d94d
Initial implementation & specs of the Event model and its children
4 lines
119 B
Ruby
4 lines
119 B
Ruby
class Lecture < Event
|
|
validates :length, numericality: {greater_than_or_equal_to: 40, less_than_or_equal_to: 45}
|
|
end
|