diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2018-01-04 23:36:55 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-01-04 15:36:55 +0100 |
commit | 3c189642561f27925803448059e212718e4a2497 (patch) | |
tree | 31bdc4fb92b0e31d0ae2ec64856c4f75e4ba3028 /app | |
parent | c61dd918a24761b7a96cb9e65e6943238f630715 (diff) |
Fallback default thumbnail in instance status API (#6177)
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/routing_helper.rb | 5 | ||||
-rw-r--r-- | app/serializers/rest/instance_serializer.rb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/app/helpers/routing_helper.rb b/app/helpers/routing_helper.rb index 11894a895..998b7566f 100644 --- a/app/helpers/routing_helper.rb +++ b/app/helpers/routing_helper.rb @@ -4,6 +4,7 @@ module RoutingHelper extend ActiveSupport::Concern include Rails.application.routes.url_helpers include ActionView::Helpers::AssetTagHelper + include Webpacker::Helper included do def default_url_options @@ -17,6 +18,10 @@ module RoutingHelper URI.join(root_url, source).to_s end + def full_pack_url(source, **options) + full_asset_url(asset_pack_path(source, options)) + end + private def use_storage? diff --git a/app/serializers/rest/instance_serializer.rb b/app/serializers/rest/instance_serializer.rb index 2898011fd..ae1dbe6b5 100644 --- a/app/serializers/rest/instance_serializer.rb +++ b/app/serializers/rest/instance_serializer.rb @@ -27,7 +27,7 @@ class REST::InstanceSerializer < ActiveModel::Serializer end def thumbnail - full_asset_url(instance_presenter.thumbnail.file.url) if instance_presenter.thumbnail + instance_presenter.thumbnail ? full_asset_url(instance_presenter.thumbnail.file.url) : full_pack_url('preview.jpg') end def stats |