aboutsummaryrefslogtreecommitdiff
blob: 904dfe174e058fcbbb6a069112da306513b4f308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Guest < Hobo::Guest
  def administrator?; false; end
  def answered_questions; []; end
  def any_pending_acceptances?; false; end
  def id; nil; end
  def mentor; nil; end
  def mentor_is?(x); false; end
  def nick; nil; end
  def project_lead; false; end
  def questions_to_approve; []; end
  def role; Role.new(:guest); end
  def token; nil; end
end