You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
533 B
25 lines
533 B
# frozen_string_literal: true |
|
|
|
class Api::V1::Timelines::BaseController < Api::BaseController |
|
after_action :insert_pagination_headers, unless: -> { @statuses.empty? } |
|
|
|
private |
|
|
|
def pagination_collection |
|
@statuses |
|
end |
|
|
|
def next_path_params |
|
permitted_params.merge(max_id: pagination_max_id) |
|
end |
|
|
|
def prev_path_params |
|
permitted_params.merge(min_id: pagination_since_id) |
|
end |
|
|
|
def permitted_params |
|
params |
|
.slice(*self.class::PERMITTED_PARAMS) |
|
.permit(*self.class::PERMITTED_PARAMS) |
|
end |
|
end
|
|
|