Fix JSON output for Rails 7
This commit is contained in:
parent
7fe26d471e
commit
daa6d7c4b4
1 changed files with 5 additions and 1 deletions
|
|
@ -3,23 +3,27 @@ class JsonController < ApplicationController
|
|||
def package
|
||||
expires_in 1.hours, public: true
|
||||
@p = Package.find_by_name! params[:name]
|
||||
render json: @p
|
||||
end
|
||||
|
||||
# JSON information on all packages
|
||||
def packages
|
||||
expires_in 1.days, public: true
|
||||
@p = Package.all
|
||||
render json: @p
|
||||
end
|
||||
|
||||
# JSON information on all screenshots
|
||||
def screenshots
|
||||
expires_in 1.days, public: true
|
||||
@s = Screenshot.includes(:package)
|
||||
@s = Screenshot.approved.includes(:package)
|
||||
render json: @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
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue