Restful Authentication - Check User admin status
Uses h_a_b_t_m relationship to Tier table (via tiers_users join table) to return an array of access groups this user is a member of.
def is_admin? #TODO: make into an accessor? return false unless self.tiers tier_names = self.tiers.collect {|t| t.name} return tier_names.include? "admin" end