c556e9c694
- Redirect to default locale if URL does not provide the locale param
21 lines
552 B
Ruby
21 lines
552 B
Ruby
class Public::Api::V1::PortalsController < PublicController
|
|
before_action :ensure_custom_domain_request, only: [:show]
|
|
before_action :redirect_to_portal_with_locale, only: [:show]
|
|
before_action :portal
|
|
layout 'portal'
|
|
|
|
def show; end
|
|
|
|
private
|
|
|
|
def portal
|
|
@portal ||= Portal.find_by!(slug: params[:slug], archived: false)
|
|
@locale = params[:locale] || @portal.default_locale
|
|
end
|
|
|
|
def redirect_to_portal_with_locale
|
|
return if params[:locale].present?
|
|
|
|
redirect_to "/hc/#{@portal.slug}/#{@portal.default_locale}"
|
|
end
|
|
end
|