profile_controller.rb 103 B

12345
  1. class ProfileController < ApplicationController
  2. def index
  3. @user = User.find(1)
  4. end
  5. end