質問編集履歴

5

修正

2020/12/28 07:28

投稿

moto12
moto12

スコア15

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
 
14
14
 
15
- ![イメージ説明](fa38baf252483ff9c9bb21e18d459eeb.png)
15
+ ![イメージ説明](4f97a34d8df5db0887d425e31463f89d.png)
16
16
 
17
17
 
18
18
 

4

訂正

2020/12/28 07:28

投稿

moto12
moto12

スコア15

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  ### 前提・実現したいこと
2
2
 
3
- あるユーザーが書いたdiary(日記)に対して、reply(コメント)ができるように
3
+ あるユーザーが書いたdiary(日記)に対して、教師が1つのみreply(コメント)ができるように
4
4
 
5
5
  実装していましたが、その際以下のようなエラーが出てきました。
6
6
 

3

訂正

2020/12/28 06:26

投稿

moto12
moto12

スコア15

test CHANGED
@@ -1 +1 @@
1
- Couldn't find User without an ID
1
+ Couldn't find User without an ID
test CHANGED
File without changes

2

更新

2020/12/28 05:56

投稿

moto12
moto12

スコア15

test CHANGED
File without changes
test CHANGED
@@ -120,13 +120,9 @@
120
120
 
121
121
  def new
122
122
 
123
- @diary = Diary.new
123
+ @reply = Reply.new
124
124
 
125
125
  @user = User.find(params[:user_id])
126
-
127
- @diaries = @user.diaries.order("created_at DESC")
128
-
129
-
130
126
 
131
127
  end
132
128
 

1

更新

2020/12/28 05:53

投稿

moto12
moto12

スコア15

test CHANGED
@@ -1 +1 @@
1
- Couldn't find User without an ID
1
+ Couldn't find User without an ID
test CHANGED
@@ -122,7 +122,7 @@
122
122
 
123
123
  @diary = Diary.new
124
124
 
125
- @user = current_user
125
+ @user = User.find(params[:user_id])
126
126
 
127
127
  @diaries = @user.diaries.order("created_at DESC")
128
128