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
|
2017-07-27 06:13:49 -07:00
|
|
|
Setting.site_title.presence || site_hostname
|
2017-04-17 15:16:32 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def site_hostname
|
|
|
|
Rails.configuration.x.local_domain
|
|
|
|
end
|
|
|
|
end
|