codeRIT/hackathon_manager

View on GitHub
lib/hackathon_manager.rb

Summary

Maintainability
A
0 mins
Test Coverage
module HackathonManager
  def self.field_enabled?(field)
    disabled_fields = HackathonConfig.disabled_fields || ''
    !disabled_fields.include?(field.to_s)
  end
end