From 14ab244bacab1649f344b08d6898eccccea45311 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Mon, 21 Sep 2020 23:06:20 -0500 Subject: Expose reblogs attribute to Lists API --- app/serializers/rest/list_serializer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/serializers/rest/list_serializer.rb b/app/serializers/rest/list_serializer.rb index 3e87f7119..45c8dca67 100644 --- a/app/serializers/rest/list_serializer.rb +++ b/app/serializers/rest/list_serializer.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class REST::ListSerializer < ActiveModel::Serializer - attributes :id, :title, :replies_policy + attributes :id, :title, :replies_policy, :reblogs def id object.id.to_s -- cgit