質問するログイン新規登録

質問編集履歴

4

なおし

2016/04/23 12:58

投稿

M8KzBFdJPyD1kKd
M8KzBFdJPyD1kKd

スコア26

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

修正

2016/04/23 12:57

投稿

M8KzBFdJPyD1kKd
M8KzBFdJPyD1kKd

スコア26

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?"), **new_user_confirmation_path**(resource_name) %><br />
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

分かりやすく

2016/04/23 12:57

投稿

M8KzBFdJPyD1kKd
M8KzBFdJPyD1kKd

スコア26

title CHANGED
File without changes
body CHANGED
@@ -44,7 +44,9 @@
44
44
 
45
45
  ###3.confirmation_instructions.html.erb のパスを修正しました
46
46
  ```ここに言語を入力
47
- new_user_confirmation_path(resource_name) %><br />
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

分かりやすく

2016/04/23 12:56

投稿

M8KzBFdJPyD1kKd
M8KzBFdJPyD1kKd

スコア26

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
  いろいろやってみたが、次のとおりのエラーが・・・