DevInSantos/DevInSantos-events

View on GitHub
app/models/interval.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Interval < ActiveRecord::Base
  validates_presence_of :description, :horary

  belongs_to :event

  def for_this_room?(room)
    true
  end
end