summaryrefslogtreecommitdiff
path: root/app/views/downloads/index.json.jbuilder
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/downloads/index.json.jbuilder')
-rw-r--r--app/views/downloads/index.json.jbuilder4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/downloads/index.json.jbuilder b/app/views/downloads/index.json.jbuilder
new file mode 100644
index 0000000..3323b04
--- /dev/null
+++ b/app/views/downloads/index.json.jbuilder
@@ -0,0 +1,4 @@
+json.array!(@downloads) do |download|
+ json.extract! download, :id, :name, :filename, :type, :description, :hits
+ json.url download_url(download, format: :json)
+end