notebook/app/controllers/users_controller.rb
2016-09-05 23:48:06 -05:00

6 lines
102 B
Ruby

class UsersController < ApplicationController
def show
@user = User.find(params[:id])
end
end