与えられた
class User < ApplicationRecord
has_one_attached :avatar
def avatar_path
Rails.application.routes.url_helpers.rails_blob_path avatar,
disposition: 'inline',
only_path: true
end
end
class UsersController < ApplicationController
def index
@users = User.all
end
end
各アバターを表示しようとするときにactive_storage_attachments
N +1 クエリを回避するにはどうすればよいですか?active_storage_blobs