質問編集履歴
1
profilesコントローラーの中で、before_actionで処理していた部分を記載しておりませんでした。1行目の@profile = Profile.find(params[:id]です)
test
CHANGED
File without changes
|
test
CHANGED
@@ -174,6 +174,8 @@
|
|
174
174
|
|
175
175
|
def show
|
176
176
|
|
177
|
+
@profile = Profile.find(params[:id])
|
178
|
+
|
177
179
|
profile_user_id = @profile.user_id #選んだユーザーのユーザーidを取得
|
178
180
|
|
179
181
|
profile_user_dm = UserDm.where(user_id: profile_user_id) #user_dmsテーブルに登録されている選んだユーザーの情報を取得
|