Files
astuto/app/helpers/header_helper.rb

11 lines
336 B
Ruby
Raw Normal View History

2024-09-16 18:48:18 +02:00
module HeaderHelper
def get_url_for_logo
if Current.tenant.tenant_setting.logo_links_to == "root_page"
@header_full_urls ? get_url_for(method(:root_url)) : root_path
elsif Current.tenant.tenant_setting.logo_links_to == "custom_url"
Current.tenant.tenant_setting.logo_custom_url
else
nil
end
end
end