LoginSignup
0
0

More than 5 years have passed since last update.

controllerに記載している内容をmodelに移動させる

Posted at

コントローラーのみに
記載(元のプログラム)

C/controller.rb
if A || B
 p @C
end

モデルに記載するパターン

〇〇_controller.rb
if @〇〇.sample
 p @C
end
〇〇model/〇〇.rb
def sample
 A || B
end

この2パターンは同じ処理になる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0