Employers working - onboarding to card print
CI / scan_ruby (push) Failing after 10m41s
CI / lint (push) Failing after 7m31s
CI / test (push) Failing after 8m29s
Docker / build-and-test-image (push) Failing after 11m32s

This commit is contained in:
Jason Jordan
2026-01-15 11:37:50 -05:00
parent 0464ba8929
commit 4fac3b1036
108 changed files with 4113 additions and 431 deletions
@@ -4,16 +4,12 @@ module SampleCard
def initialize(jasper_url)
@jasper_url = jasper_url
end
def call
response = HTTParty.get(@jasper_url)
card_pdf = CombinePDF.parse(response.body)
# todays_date = Date.today.strftime("%m-%d-%Y")
# card_pdf.save("tmp/service_test_member_id_card_#{todays_date}.pdf")
card_pdf
CombinePDF.parse(response.body)
end