This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-18 00:16:32 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module InstanceHelper
|
|
|
|
def site_title
|
2018-03-04 20:29:49 +01:00
|
|
|
Setting.site_title
|
2017-04-18 00:16:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def site_hostname
|
2018-01-20 03:49:06 +01:00
|
|
|
@site_hostname ||= Addressable::URI.parse("//#{Rails.configuration.x.local_domain}").display_uri.host
|
2017-04-18 00:16:32 +02:00
|
|
|
end
|
|
|
|
end
|