Define a serializer for /api/v1/mutes/details
This commit is contained in:
parent
70592cdaba
commit
af2d793398
2 changed files with 21 additions and 2 deletions
|
@ -13,8 +13,8 @@ class Api::V1::MutesController < Api::BaseController
|
|||
end
|
||||
|
||||
def details
|
||||
@data = @mutes = paginated_mutes
|
||||
render json: @mutes
|
||||
@data = @mutes = load_mutes
|
||||
render json: @mutes, each_serializer: REST::MuteSerializer
|
||||
end
|
||||
|
||||
private
|
||||
|
@ -27,6 +27,10 @@ class Api::V1::MutesController < Api::BaseController
|
|||
Account.includes(:muted_by).references(:muted_by)
|
||||
end
|
||||
|
||||
def load_mutes
|
||||
paginated_mutes.includes(:account, :target_account).to_a
|
||||
end
|
||||
|
||||
def paginated_mutes
|
||||
Mute.where(account: current_account).paginate_by_max_id(
|
||||
limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue