mastodon/app/helpers/mascot_helper.rb
2022-09-11 16:05:01 +00:00

14 lines
279 B
Ruby

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