* Remove :api_v1 feature flag * Reworking the auth configs throughout V1 + specs * Fix remaining v1 specs * Enhanced inline docs * deprecation warning update * Use headers variable for most v1 specs * Cherry pick spec changes * Fix specs * group let! statements - rubocop * Bring back ||= on api v1 authentication methods * Bump swagger/v1/api_v1.json
10 lines
257 B
Ruby
10 lines
257 B
Ruby
module Api
|
|
module V1
|
|
class FollowersController < ApiController
|
|
include Api::FollowersController
|
|
|
|
before_action :authenticate_with_api_key_or_current_user!
|
|
before_action -> { limit_per_page(default: 80, max: 1000) }
|
|
end
|
|
end
|
|
end
|