質問編集履歴
4
なおし
title
CHANGED
File without changes
|
body
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
config.action_mailer.default_url_options = { host: '〇〇c9users.io' }
|
43
43
|
```
|
44
44
|
|
45
|
-
###3.confirmation_instructions.html.erb のパスを修正しました
|
45
|
+
###3.confirmation_instructions.html.erb のパスをnew_user_confirmation_pathに修正しました
|
46
46
|
```ここに言語を入力
|
47
47
|
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
48
48
|
<%= link_to t('.didn_t_receive_confirmation_instructions', :default => "Didn't receive confirmation instructions?"), new_user_confirmation_path(resource_name) %><br />
|
3
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -45,7 +45,7 @@
|
|
45
45
|
###3.confirmation_instructions.html.erb のパスを修正しました
|
46
46
|
```ここに言語を入力
|
47
47
|
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
48
|
-
<%= link_to t('.didn_t_receive_confirmation_instructions', :default => "Didn't receive confirmation instructions?"),
|
48
|
+
<%= link_to t('.didn_t_receive_confirmation_instructions', :default => "Didn't receive confirmation instructions?"), new_user_confirmation_path(resource_name) %><br />
|
49
49
|
<% end -%>
|
50
50
|
```
|
51
51
|
|
2
分かりやすく
title
CHANGED
File without changes
|
body
CHANGED
@@ -44,7 +44,9 @@
|
|
44
44
|
|
45
45
|
###3.confirmation_instructions.html.erb のパスを修正しました
|
46
46
|
```ここに言語を入力
|
47
|
-
|
47
|
+
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
48
|
+
<%= link_to t('.didn_t_receive_confirmation_instructions', :default => "Didn't receive confirmation instructions?"), **new_user_confirmation_path**(resource_name) %><br />
|
49
|
+
<% end -%>
|
48
50
|
```
|
49
51
|
|
50
52
|
###4.confirmation_instructions.html.erb の『confirmation_url()』を『user_confirmation_url()』に修正
|
1
分かりやすく
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
devise 確認メールを送れない
|
1
|
+
rails4 devise 確認メールを送れない
|
body
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
cloud9の環境でdevise を用いて、確認メールを送るようにしたい
|
1
|
+
rails4 cloud9の環境でdevise を用いて、確認メールを送るようにしたい
|
2
2
|
|
3
3
|
|
4
4
|
いろいろやってみたが、次のとおりのエラーが・・・
|