pupilfirst/pupilfirst

View on GitHub
app/constraints/development_constraint.rb

Summary

Maintainability
A
0 mins
Test Coverage
D
66%
class DevelopmentConstraint
  def matches?(_request)
    # Match constraint if in the development environment.
    Rails.env.development?
  end
end