Files
danbooru/app/controllers/recommended_posts_controller.rb
2021-06-17 04:17:53 -05:00

12 lines
296 B
Ruby

class RecommendedPostsController < ApplicationController
respond_to :html, :json, :xml, :js
def index
limit = params.fetch(:limit, 100).to_i.clamp(0, 200)
@recs = RecommenderService.search(search_params).take(limit)
@posts = @recs.pluck(:post)
respond_with(@recs)
end
end