mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 10:16:03 +01:00
9 lines
140 B
Ruby
9 lines
140 B
Ruby
|
class UserController < ApplicationController
|
||
|
def show
|
||
|
@user = User.find_by_screen_name(params[:username])
|
||
|
end
|
||
|
|
||
|
def edit
|
||
|
end
|
||
|
end
|