2017-04-18 08:16:32 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module InstanceHelper
|
|
|
|
def site_title
|
2018-03-05 06:29:49 +11:00
|
|
|
Setting.site_title
|
2017-04-18 08:16:32 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def site_hostname
|
2018-01-20 13:49:06 +11:00
|
|
|
@site_hostname ||= Addressable::URI.parse("//#{Rails.configuration.x.local_domain}").display_uri.host
|
2017-04-18 08:16:32 +10:00
|
|
|
end
|
2019-09-03 12:56:54 +10:00
|
|
|
|
|
|
|
def description_for_sign_up
|
|
|
|
prefix = begin
|
|
|
|
if @invite.present?
|
|
|
|
I18n.t('auth.description.prefix_invited_by_user', name: @invite.user.account.username)
|
|
|
|
else
|
|
|
|
I18n.t('auth.description.prefix_sign_up')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
safe_join([prefix, I18n.t('auth.description.suffix')], ' ')
|
|
|
|
end
|
2017-04-18 08:16:32 +10:00
|
|
|
end
|