2017-04-17 22:16:32 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module InstanceHelper
|
|
|
|
def site_title
|
2018-03-04 19:29:49 +00:00
|
|
|
Setting.site_title
|
2017-04-17 22:16:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def site_hostname
|
2018-01-20 02:49:06 +00:00
|
|
|
@site_hostname ||= Addressable::URI.parse("//#{Rails.configuration.x.local_domain}").display_uri.host
|
2017-04-17 22:16:32 +00:00
|
|
|
end
|
2019-09-03 02:56:54 +00:00
|
|
|
|
2023-04-23 20:35:54 +00:00
|
|
|
def description_for_sign_up(invite = nil)
|
|
|
|
safe_join([description_prefix(invite), I18n.t('auth.description.suffix')], ' ')
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2019-09-03 02:56:54 +00:00
|
|
|
|
2023-04-23 20:35:54 +00:00
|
|
|
def description_prefix(invite)
|
|
|
|
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
|
2019-09-03 02:56:54 +00:00
|
|
|
end
|
2017-04-17 22:16:32 +00:00
|
|
|
end
|