8 lines
141 B
Ruby
8 lines
141 B
Ruby
class UsersController < ApplicationController
|
|
# GET /users/1
|
|
# GET /users/1.json
|
|
def show
|
|
@user = User.find(params[:id])
|
|
end
|
|
end
|