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