code9ty/website

View on GitHub
app/models/intake.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Intake < ApplicationRecord
  def self.open?
    intake = Intake.last
    intake.start_date.past? && intake.last_date.future? if intake
  end
end