2017-04-17 18:16:32 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module InstanceHelper
|
|
|
|
def site_title
|
2018-03-04 14:29:49 -05:00
|
|
|
Setting.site_title
|
2017-04-17 18:16:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def site_hostname
|
2018-01-19 21:49:06 -05:00
|
|
|
@site_hostname ||= Addressable::URI.parse("//#{Rails.configuration.x.local_domain}").display_uri.host
|
2017-04-17 18:16:32 -04:00
|
|
|
end
|
2019-09-02 22:56:54 -04: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-17 18:16:32 -04:00
|
|
|
end
|