wafuwafu13 / e-stat-rails

:pencil:Simple article management system / RubyonRails + Bootstrap + jQuery + Heroku + AmazonS3
https://e-stat-rails.herokuapp.com/
0 stars 0 forks source link

ログインではなくパスワード要求で処理 #112

Open wafuwafu13 opened 4 years ago

wafuwafu13 commented 4 years ago

デフォルトで、form_for(@user)でsubmitしたらuser#updateに飛ぶ

wafuwafu13 commented 4 years ago

認証用コントローラーを作る?

wafuwafu13 commented 4 years ago

rails g controller authenticate

wafuwafu13 commented 4 years ago

認証用コントローラーを作る?

意味なかった userのupdateに行く

wafuwafu13 commented 4 years ago

認証用コントローラーを作る?

意味なかった userのupdateに行く

%= form_tag(authenticates_path, method: :post) do %> でauthのcreateに行く

wafuwafu13 commented 4 years ago

blog

edit

render template: "authenticates/new"

抜け出せなくなる

wafuwafu13 commented 4 years ago

blog

edit

render template: "authenticates/new"

抜け出せなくなる

redirect_to でやる redirect_to controller: 'authenticates', action: 'new'

wafuwafu13 commented 4 years ago

Ajax使うしかない