Files
grecia/app/components/layout/footer_component.rb
taitus a5911f5c6a Modify admin layout to only manage tenants and admins
We only want to render the account link and login items in the header.
And we want only render the Multitenancy and Administrators sections in
the admin sidebar.

We include the administrators management so it's possible to give
permissions to other users to manage tenants.

In order to restrict access to other sections by typing the URL or
following a link, we're only enabling the rest of the routes when we
aren't in the multitenancy management mode.
2024-11-06 11:17:53 +01:00

30 lines
681 B
Ruby

class Layout::FooterComponent < ApplicationComponent
use_helpers :content_block
def render?
!Rails.application.multitenancy_management_mode?
end
def footer_legal_content_block
content_block("footer_legal")
end
private
def open_source_link
external_link_to(t("layouts.footer.open_source"), t("layouts.footer.open_source_url"))
end
def repository_link
external_link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"))
end
def external_link_to(text, url)
link_to(text, url, rel: "nofollow external")
end
def allowed_link_attributes
self.class.sanitized_allowed_attributes + ["rel"]
end
end