編集画面の実装がうまくいかず困っていたところ、ドンピシャの記事を見つけたためメモ。
Rails: form_withで名前空間が異なるコントローラを簡潔に指定する方法
form_withの引数に[:admin, @user]を渡す。
<%= form_with model: [:admin, @user], local: true do |f| %>
Go to list of users who liked
More than 1 year has passed since last update.
編集画面の実装がうまくいかず困っていたところ、ドンピシャの記事を見つけたためメモ。
Rails: form_withで名前空間が異なるコントローラを簡潔に指定する方法
form_withの引数に[:admin, @user]を渡す。
<%= form_with model: [:admin, @user], local: true do |f| %>
Register as a new user and use Qiita more conveniently
Go to list of users who liked