Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはどこにも見つからないようです...デバイス画面(登録/編集)の1つにダッシュボードを追加しようとしていますが、いくつかの変数を使用可能にする必要があります。すべてのデバイスコントローラロジックを書き直さずにこれを行うにはどうすればよいですか?
そのためにデバイス コントローラをオーバーライドし、親メソッドを呼び出す必要があります。
class RegistrationsController < Devise::RegistrationsController def edit super @your_var = 'something' end end