29 lines
805 B
Ruby
29 lines
805 B
Ruby
module Api
|
|
module V0
|
|
class FollowersController < ApiController
|
|
before_action :authenticate_with_api_key_or_current_user!
|
|
before_action -> { limit_per_page(default: 80, max: 1000) }
|
|
|
|
USERS_ATTRIBUTES_FOR_SERIALIZATION = %i[
|
|
id follower_id follower_type
|
|
].freeze
|
|
private_constant :USERS_ATTRIBUTES_FOR_SERIALIZATION
|
|
|
|
def users
|
|
@follows = Follow.followable_user(@user.id)
|
|
.includes(:follower)
|
|
.select(USERS_ATTRIBUTES_FOR_SERIALIZATION)
|
|
.order(created_at: :desc)
|
|
.page(params[:page])
|
|
.per(@follows_limit)
|
|
end
|
|
|
|
private
|
|
|
|
def limit_per_page(default:, max:)
|
|
per_page = (params[:per_page] || default).to_i
|
|
@follows_limit = [per_page, max].min
|
|
end
|
|
end
|
|
end
|
|
end
|