Revert "Fix JSON response"

This reverts commit 1df56ebcb8.
This commit is contained in:
Omar Roth 2020-07-30 08:27:42 -04:00
parent 1df56ebcb8
commit cbc77463be
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 2 additions and 5 deletions

View File

@ -24,7 +24,7 @@ macro rendered(filename)
render "src/instances/views/#{{{filename}}}.ecr"
end
alias Instance = {flag: String?, region: String?, stats: JSON::Any?, type: String, uri: String, monitor: JSON::Any?}
alias Instance = NamedTuple(flag: String?, region: String?, stats: JSON::Any?, type: String, uri: String, monitor: JSON::Any?)
INSTANCES = {} of String => Instance
@ -114,10 +114,7 @@ get "/instances.json" do |env|
sort_by = env.params.query["sort_by"]?
sort_by ||= "type,users"
instances = sort_instances(INSTANCES, sort_by).map do |instance|
name, value = instance
Hash{name => value}
end
instances = sort_instances(INSTANCES, sort_by)
if env.params.query["pretty"]?.try &.== "1"
instances.to_pretty_json