質問編集履歴

1

createアクションの追加

2020/08/31 07:33

投稿

KOO_
KOO_

スコア58

test CHANGED
File without changes
test CHANGED
@@ -37,3 +37,33 @@
37
37
 
38
38
 
39
39
  上記で不足している部分があるのでしょうか?ご教示よろしくお願い致します。
40
+
41
+
42
+
43
+
44
+
45
+ ```ここに言語を入力
46
+
47
+ def create
48
+
49
+ @company = Company.new(company_params)
50
+
51
+ @company.member_id = current_member.id
52
+
53
+ if params[:back]
54
+
55
+ render new_company_path
56
+
57
+ elsif @company.save
58
+
59
+ render thanks_companies_path
60
+
61
+ else
62
+
63
+ render new_company_path
64
+
65
+ end
66
+
67
+ end
68
+
69
+ ```