retrospring/app/controllers/user_controller.rb

9 lines
141 B
Ruby
Raw Normal View History

2014-11-02 17:57:37 +01:00
class UserController < ApplicationController
def show
2014-11-02 18:16:47 +01:00
@user = User.find_by_screen_name!(params[:username])
2014-11-02 17:57:37 +01:00
end
def edit
end
end