シンプルなショーを設定するときは、すべてのものを見ることができます。操作を介してすべてのレコードを取得して表示する
操作
class Thing < ApplicationRecord
class ShowAll < Trailblazer::Operation
include Model
model Thing, :all #why :all is not working here?
def process
end
end
end
コントローラ
class PageController < ApplicationController
def index
run Word::ShowAll
end
end
なぜ:all
デシベルからすべてのものを得るために働くが、そのIDを経由して1を取得する:find
働きませんか?