FEATURE: image uploads now have short urls

Shorten all image uploads to use short urls, this is the client
side implementation.
This commit is contained in:
Sam
2017-08-22 16:40:01 -04:00
parent 605653a369
commit d7a2584c6e
9 changed files with 97 additions and 7 deletions

View File

@@ -1,5 +1,11 @@
class UploadSerializer < ApplicationSerializer
attributes :id, :url, :original_filename, :filesize, :width, :height
attributes :id,
:url,
:original_filename,
:filesize,
:width,
:height,
:extension,
:short_url,
:retain_hours
end