conc-at/clueshed

View on GitHub
app/models/interest.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Interest < ActiveRecord::Base
  validates_presence_of :title
  validates_presence_of :description
  has_many :contribs
  has_many :votes
  belongs_to :user
end