tap/app/controllers/users_controller.rb

9 lines
118 B
Ruby
Raw Normal View History

2014-11-06 15:25:27 +00:00
class UsersController < ApplicationController
def new
end
def show
@user = User.find(params[:id])
end
end