Prod build process

This commit is contained in:
Jason Jordan
2026-05-06 13:28:16 -04:00
parent 1d9025276d
commit e0101be567
223 changed files with 1861 additions and 7105 deletions
+10 -1
View File
@@ -5,6 +5,7 @@ module IdCard
def self.permitted_params(params)
params.require(:id_card_setup).require(:provider_section).permit(
:title,
:provider_line_1,
:provider_line_2,
:provider_line_3,
@@ -30,7 +31,15 @@ module IdCard
:claim_to_11,
:claim_to_12
)
end
end
def display_title
if self.default
"Default #{self.title}"
else
self.title
end
end
end
end