We were accidentally filtering this attribute when sanitizing the text
since commit 928312e21.
22 lines
538 B
Ruby
22 lines
538 B
Ruby
class Layout::FooterComponent < ApplicationComponent
|
|
delegate :content_block, to: :helpers
|
|
|
|
def footer_legal_content_block
|
|
content_block("footer_legal")
|
|
end
|
|
|
|
private
|
|
|
|
def open_source_link
|
|
link_to(t("layouts.footer.open_source"), t("layouts.footer.open_source_url"), rel: "nofollow")
|
|
end
|
|
|
|
def repository_link
|
|
link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"), rel: "nofollow")
|
|
end
|
|
|
|
def allowed_link_attributes
|
|
self.class.sanitized_allowed_attributes + ["rel"]
|
|
end
|
|
end
|