質問編集履歴
2
コントローラーを追加させていただきました
test
CHANGED
File without changes
|
test
CHANGED
@@ -164,6 +164,8 @@
|
|
164
164
|
|
165
165
|
```rb
|
166
166
|
|
167
|
+
*CareUsersController
|
168
|
+
|
167
169
|
def edit_index
|
168
170
|
|
169
171
|
@care_users = CareUser.page(params[:page]).per(5)
|
@@ -178,6 +180,28 @@
|
|
178
180
|
|
179
181
|
|
180
182
|
|
183
|
+
```rb
|
184
|
+
|
185
|
+
*IntermediatesController
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
def create
|
190
|
+
|
191
|
+
@intermediate = current_user.intermediates.create(care_user_id: params[:care_user_id],confirmation: true)
|
192
|
+
|
193
|
+
if @intermediate.save
|
194
|
+
|
195
|
+
redirect_to care_users_edit_index_user_path(current_user)
|
196
|
+
|
197
|
+
end
|
198
|
+
|
199
|
+
end
|
200
|
+
|
201
|
+
```
|
202
|
+
|
203
|
+
|
204
|
+
|
181
205
|
![イメージ説明](f0dca251e5589a17653f8101aa4eae96.png)
|
182
206
|
|
183
207
|
|
1
タイトル修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
中
|
1
|
+
中間テーブルのカラムを取り出す方法がわかりません
|
test
CHANGED
File without changes
|