summaryrefslogtreecommitdiff
path: root/app/views/application/json/_photos.jbuilder
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/application/json/_photos.jbuilder')
-rw-r--r--app/views/application/json/_photos.jbuilder13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/views/application/json/_photos.jbuilder b/app/views/application/json/_photos.jbuilder
new file mode 100644
index 00000000..f7b6be48
--- /dev/null
+++ b/app/views/application/json/_photos.jbuilder
@@ -0,0 +1,13 @@
+json.array! @photos do |photo|
+ json.cache! ['v1', photo] do
+ json.id photo.id
+ json.cake_id photo.imageable_id
+ json.content_type photo.content_type
+ json.original_filename photo.original_filename
+ json.thumb_url photo.url_for(:thumb)
+ json.large_url photo.url_for(:large)
+ json.original_url photo.url_for(:original)
+ json.created_at photo.created_at
+ json.updated_at photo.updated_at
+ end
+end