1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-30 03:23:01 -05:00

14 lines
285 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module MascotHelper
def mascot_url
full_asset_url(instance_presenter.mascot&.file&.url || asset_pack_path('media/images/elephant_ui_plane.svg'))
end
private
def instance_presenter
@instance_presenter ||= InstancePresenter.new
end
end