Keep previous format of JSON repsonses before Rails 7

This commit is contained in:
Christoph Haas 2024-07-29 20:12:33 +02:00
parent 142780c308
commit 778465fe0b

View file

@ -10,20 +10,20 @@ class JsonController < ApplicationController
def packages
expires_in 1.days, public: true
@p = Package.all
render json: @p
render json: { packages: @p }
end
# JSON information on all screenshots
def screenshots
expires_in 1.days, public: true
@s = Screenshot.approved.includes(:package)
render json: @s
render json: { screenshots: @s }
end
# JSON list of packages that do not have screenshots
def packages_without_screenshots
expires_in 1.hours, public: true
@p = Package.without_screenshots.all
render json: @p
render json: { packages: @p }
end
end