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
+19 -1
View File
@@ -1,7 +1,25 @@
# frozen_string_literal: true
Rails.application.routes.draw do
resources :employer_setup, only: [:new, :create, :edit, :update]
resources :card_rxes
resources :card_providers
resources :card_logo_files do
get 'image', on: :member, constraints: { id: /.*/ }
end
# resources :employer_setup
resources :employers do
collection do
post 'import'
end
end
resources :sample_id_cards do
collection do
get 'generate_sample'
get 'generate_print'
end
end
get 'id_card_benefits_templates/get_template_benefits/:id', to: 'id_card_benefits_templates#get_template_benefits'
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.