summaryrefslogtreecommitdiff
path: root/web/lib/api/v4/relations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'web/lib/api/v4/relations.rb')
-rw-r--r--web/lib/api/v4/relations.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/lib/api/v4/relations.rb b/web/lib/api/v4/relations.rb
index 3296239..2d3935b 100644
--- a/web/lib/api/v4/relations.rb
+++ b/web/lib/api/v4/relations.rb
@@ -56,7 +56,7 @@ class Taginfo < Sinatra::Base
pr[rtype] << pv
end
- return {
+ return JSON.generate({
:page => @ap.page,
:rp => @ap.results_per_page,
:total => total,
@@ -67,7 +67,7 @@ class Taginfo < Sinatra::Base
:count_fraction => row['count'].to_f / all_relations,
:prevalent_roles => row['members_all'] ? pr[row['rtype']][0,10] : nil
} }
- }.to_json
+ }, json_opts(params[:format]))
end
end