ランキング参加中プログラミング[17]電話番号カラム追加[ホームに戻る] >> [19]部屋モデル作成 ユーザープロフィールページを作成します。 「app\controllers\users_controller.rb」ファイルに以下のメソッドを追加します。 記述追加 app\controllers\users_controller.rb(8行目) def show @user = User.find(params[:id]) end app\controllers\users_controller.rb class UsersController < ApplicationControlle…