Skip to content

DEVISE SHOW USER

RaulArgott edited this page Apr 23, 2020 · 3 revisions

Show user

Creating show method

Add this lines in users_controller.rb file

def show    
 @user = User.find(params[:id])
end

Clone this wiki locally