journalduhacker/app/controllers/users_controller.rb

20 lines
414 B
Ruby
Raw Normal View History

class UsersController < ApplicationController
2012-06-30 21:14:35 +02:00
def show
2014-01-12 21:22:47 +01:00
@showing_user = User.where(:username => params[:username]).first!
@title = "User #{@showing_user.username}"
2012-06-30 21:14:35 +02:00
end
2012-07-08 02:47:13 +02:00
def tree
@title = "Users"
users = User.order("id DESC").to_a
2012-07-08 02:47:13 +02:00
@user_count = users.length
@users_by_parent = users.group_by(&:invited_by_user_id)
2012-07-08 02:47:13 +02:00
end
def invite
@title = "Pass Along an Invitation"
end
end