* Use api-key for api tests * Remove /api/followers/organizations endpoint * Add more tests * Add documentation for /api/followers/users
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) }
|
|
|
|
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
|
|
|
|
USERS_ATTRIBUTES_FOR_SERIALIZATION = %i[
|
|
id follower_id follower_type
|
|
].freeze
|
|
private_constant :USERS_ATTRIBUTES_FOR_SERIALIZATION
|
|
|
|
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
|