retrospring/app/controllers/user_controller.rb
2014-11-02 18:16:47 +01:00

8 lines
141 B
Ruby

class UserController < ApplicationController
def show
@user = User.find_by_screen_name!(params[:username])
end
def edit
end
end