# frozen_string_literal: true class Procedure::Card::AttestationComponent < ApplicationComponent def initialize(procedure:) @procedure = procedure end private def edit_attestation_path helpers.edit_admin_procedure_attestation_template_v2_path(@procedure) end def error_messages @procedure.errors.messages_for(:attestation_template).to_sentence end end