AyuntamientoMadrid/participacion

View on GitHub
app/components/shared/agree_with_terms_of_service_field_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Shared::AgreeWithTermsOfServiceFieldComponent < ApplicationComponent
  attr_reader :form
  use_helpers :new_window_link_to

  def initialize(form)
    @form = form
  end

  private

    def label
      t("form.accept_terms",
        policy: new_window_link_to(t("form.policy"), "/privacy"),
        conditions: new_window_link_to(t("form.conditions"), "/conditions"))
    end
end