Guest User

Untitled

a guest
Jun 18th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Comment < ActiveRecord::Base
  2. belongs_to :teacher
  3.  
  4. named_scope :approved, :conditions => {:approved => true}
  5. named_scope :unapproved, :conditions => {:approved => false}
  6.  
  7. end
Add Comment
Please, Sign In to add comment